Also run `make check` on travis

This commit is contained in:
Lars Karlitski 2018-09-25 11:32:20 +02:00 committed by Alexander Todorov
parent 160044ba9d
commit e33b1e1636
1 changed files with 23 additions and 8 deletions

View File

@ -1,12 +1,27 @@
FROM registry.fedoraproject.org/fedora:rawhide FROM registry.fedoraproject.org/fedora:rawhide
RUN dnf -y install make libgit2-glib tito python3-pylint \ RUN dnf -y install \
python3-nose python3-mako python3-flask \ anaconda-tui \
python3-coverage libselinux-python3 sudo \ libgit2-glib \
pykickstart python3-pytoml python3-sphinx \ libselinux-python3 \
python3-semantic_version \ make \
anaconda-tui python3-gevent beakerlib && \ pykickstart \
useradd weldr python3-coverage \
python3-coveralls \
python3-flask \
python3-gevent \
python3-mako \
python3-nose \
python3-pocketlint \
python3-pylint \
python3-pytoml \
python3-semantic_version \
python3-sphinx \
sudo \
tito \
which
RUN useradd weldr
RUN mkdir /lorax RUN mkdir /lorax
COPY . /lorax COPY . /lorax
@ -15,4 +30,4 @@ COPY . /lorax
RUN find /lorax -name "*.pyc" -exec rm -f {} \; RUN find /lorax -name "*.pyc" -exec rm -f {} \;
WORKDIR /lorax WORKDIR /lorax
RUN make test RUN make check test