f5679f61b1
This tests to make sure that the metadata timer is working (by setting it to 10s and adding a new package to the repo), and that DNFLock.lock_check immediately picks up a new package. This depends on rpmfluff which is available from Fedora or EPEL repos. Related: rhbz#1631561
35 lines
656 B
Docker
35 lines
656 B
Docker
FROM fedora:28
|
|
|
|
RUN dnf -y install \
|
|
anaconda-tui \
|
|
libgit2-glib \
|
|
libselinux-python3 \
|
|
make \
|
|
pykickstart \
|
|
python3-coverage \
|
|
python3-coveralls \
|
|
python3-flask \
|
|
python3-gevent \
|
|
python3-mako \
|
|
python3-nose \
|
|
python3-pocketlint \
|
|
python3-pylint \
|
|
python3-pytoml \
|
|
python3-semantic_version \
|
|
python3-sphinx \
|
|
python3-rpmfluff \
|
|
sudo \
|
|
tito \
|
|
which
|
|
|
|
RUN useradd weldr
|
|
|
|
RUN mkdir /lorax
|
|
COPY . /lorax
|
|
# remove byte-compiled files to avoid issues between Python 2/3
|
|
# this can happen when you switch between rhel7 and master branches
|
|
RUN find /lorax -name "*.pyc" -exec rm -f {} \;
|
|
|
|
WORKDIR /lorax
|
|
RUN make check test
|