b61a91954a
When I re-arranged the test-in-docker I didn't realize how .travis.yml was extracting the results. This should fix it. When running with test-in-docker we mount the source read-only on /linux-ro/ inside the container and copy it over to /lorax/ for running the tests. The local directory ./.test-results/ is mounted on /test-results/ in the container and the .coverage file is copied into there so that it is available on the host.
38 lines
682 B
Docker
38 lines
682 B
Docker
FROM registry.fedoraproject.org/fedora:rawhide
|
|
RUN dnf -y install \
|
|
anaconda-tui \
|
|
libgit2-glib \
|
|
libselinux-python3 \
|
|
make \
|
|
pykickstart \
|
|
python3-coverage \
|
|
python3-coveralls \
|
|
python3-flask \
|
|
python3-gevent \
|
|
python3-magic \
|
|
python3-mako \
|
|
python3-nose \
|
|
python3-pocketlint \
|
|
python3-pylint \
|
|
python3-pyparted \
|
|
python3-pytoml \
|
|
python3-semantic_version \
|
|
python3-sphinx \
|
|
python3-rpmfluff \
|
|
python3-librepo \
|
|
beakerlib \
|
|
sudo \
|
|
tito \
|
|
rsync \
|
|
e2fsprogs \
|
|
xz-lzma-compat \
|
|
pbzip2 \
|
|
squashfs-tools \
|
|
qemu-img \
|
|
which && \
|
|
touch /.in-container
|
|
RUN useradd weldr
|
|
VOLUME /lorax-ro
|
|
VOLUME /test-results
|
|
WORKDIR /lorax-ro
|