From 51e34d2b8b84f1a582b4dbbfa3693957ddc3f48a Mon Sep 17 00:00:00 2001 From: Adam Hupp Date: Mon, 25 Apr 2022 15:21:35 -0700 Subject: use tox for all the multi-version testing --- test/docker/bionic | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'test/docker/bionic') diff --git a/test/docker/bionic b/test/docker/bionic index e335b8e..2fe482c 100755 --- a/test/docker/bionic +++ b/test/docker/bionic @@ -1,8 +1,9 @@ FROM ubuntu:bionic +WORKDIR /python-magic +COPY . . RUN apt-get update -RUN apt-get -y install python -RUN apt-get -y install python3 -RUN apt-get -y install locales +RUN apt-get -y install python python3 locales python3-pip libmagic1 RUN locale-gen en_US.UTF-8 -COPY . /python-magic -CMD cd /python-magic/test && python3 ./run.py +RUN python3 -m pip install tox +CMD python3 -m tox + -- cgit v1.2.1