Use tox for testing inside a container #1884

Closed
g1itch wants to merge 8 commits from ci-tox into v0.6
Showing only changes of commit 4bd63f82d9 - Show all commits

View File

@ -22,13 +22,16 @@ RUN apt-get install -yq --no-install-suggests --no-install-recommends \
# Wine
# wget wine-stable winetricks mingw-w64 wine32 wine64
RUN apt-get install -yq python3.8 python3.8-dev python3.8-venv
# cleanup
RUN rm -rf /var/lib/apt/lists/*
RUN useradd -m -U builder
RUN python3 -m pip install wheel
RUN python3 -m pip install --upgrade virtualenv
RUN python3.8 -m pip install wheel
RUN python3.8 -m pip install --upgrade tox
RUN python3.8 -m pip install --upgrade virtualenv
# copy sources
COPY . /home/builder/src