diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 0aa9a45f..7244f74d 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -7,16 +7,16 @@ FROM alpine -RUN apk --no-cache add python python3 \ +RUN apk --no-cache add python3 \ build-base \ - python-dev python3-dev \ + python3-dev \ # wget dependency openssl \ # dev dependencies git \ bash \ sudo \ - py2-pip \ + py3-pip \ # Pillow dependencies jpeg-dev \ zlib-dev \ @@ -33,12 +33,7 @@ ADD depends /depends RUN cd /depends && ./install_webp.sh && ./install_imagequant.sh && ./install_raqm.sh RUN /usr/sbin/adduser -D pillow && \ - pip install virtualenv && virtualenv /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install olefile pytest pytest-cov && \ - /vpy/bin/pip install numpy --only-binary=:all: || true && \ - chown -R pillow:pillow /vpy && \ - virtualenv -p python3.7 /vpy3 && \ + pip3 install virtualenv && virtualenv /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install olefile pytest pytest-cov && \ /vpy3/bin/pip install numpy --only-binary=:all: || true && \ diff --git a/alpine/test.sh b/alpine/test.sh index 0e6fdb43..3e14cffa 100755 --- a/alpine/test.sh +++ b/alpine/test.sh @@ -1,11 +1,6 @@ #!/bin/bash -source /vpy/bin/activate -cd /Pillow -make clean -LIBRARY_PATH=/lib:/usr/lib make install-coverage -pytest -vx --cov PIL --cov-report term Tests - source /vpy3/bin/activate +cd /Pillow make clean LIBRARY_PATH=/lib:/usr/lib make install-coverage pytest -vx --cov PIL --cov-report term Tests diff --git a/amazon-1-amd64/Dockerfile b/amazon-1-amd64/Dockerfile index dd0cf9cc..eb77267c 100644 --- a/amazon-1-amd64/Dockerfile +++ b/amazon-1-amd64/Dockerfile @@ -2,7 +2,7 @@ FROM amazonlinux:1 run yum install -y shadow-utils util-linux xorg-x11-xauth \ findutils which \ - python27 python27-virtualenv python36 python36-devel \ + python36 python36-virtualenv python36-devel \ gcc xorg-x11-server-Xvfb ghostscript sudo wget cmake \ libtiff-devel libjpeg-devel zlib-devel freetype-devel \ lcms2-devel libwebp-devel \ @@ -10,12 +10,7 @@ run yum install -y shadow-utils util-linux xorg-x11-xauth \ RUN useradd --uid 1000 pillow -RUN bash -c "/usr/bin/virtualenv -p python2.7 --system-site-packages /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install cffi olefile pytest pytest-cov && \ - /vpy/bin/pip install numpy --only-binary=:all: || true && \ - chown -R pillow:pillow /vpy && \ - /usr/bin/virtualenv -p python3.6 --system-site-packages /vpy3 && \ +RUN bash -c "/usr/bin/virtualenv-3.6 -p python3.6 --system-site-packages /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install cffi olefile pytest pytest-cov && \ /vpy3/bin/pip install numpy --only-binary=:all: || true && \ diff --git a/amazon-1-amd64/test.sh b/amazon-1-amd64/test.sh index 59e51a38..2f74ec3c 100755 --- a/amazon-1-amd64/test.sh +++ b/amazon-1-amd64/test.sh @@ -1,13 +1,8 @@ #!/bin/bash -source /vpy/bin/activate +source /vpy3/bin/activate cd /Pillow export DISPLAY=:99.0 export LD_LIBRARY_PATH=/usr/lib make clean make install-coverage /usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests - -source /vpy3/bin/activate -make clean -make install-coverage -/usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests diff --git a/amazon-2-amd64/Dockerfile b/amazon-2-amd64/Dockerfile index da3c7f15..b8a922af 100644 --- a/amazon-2-amd64/Dockerfile +++ b/amazon-2-amd64/Dockerfile @@ -4,7 +4,7 @@ run amazon-linux-extras install python3 run yum install -y shadow-utils util-linux xorg-x11-xauth \ findutils which \ - python3-devel python3-test python3-tkinter python-virtualenv \ + python3-devel python3-test python3-tkinter python3-virtualenv \ gcc xorg-x11-server-Xvfb ghostscript sudo wget cmake make \ libtiff-devel libjpeg-devel zlib-devel freetype-devel \ lcms2-devel libwebp-devel harfbuzz-devel fribidi-devel \ @@ -18,7 +18,7 @@ RUN bash -c "/usr/bin/pip3 install virtualenv && \ /vpy/bin/pip install --upgrade pip && \ /vpy/bin/pip install cffi olefile pytest pytest-cov && \ /vpy/bin/pip install numpy --only-binary=:all: || true && \ - chown -R pillow:pillow /vpy " + chown -R pillow:pillow /vpy" ADD depends /depends RUN cd /depends && ./install_imagequant.sh && ./install_openjpeg.sh && ./install_raqm.sh diff --git a/arch/Dockerfile b/arch/Dockerfile index d1d2eea4..4a94759f 100644 --- a/arch/Dockerfile +++ b/arch/Dockerfile @@ -6,11 +6,9 @@ FROM greyltc/archlinux RUN pacman -Syu --noconfirm \ wget RUN pacman -Sy --noconfirm \ - python2 python \ - python2-virtualenv \ + python \ python-virtualenv \ gcc make git sudo \ - python2-setuptools \ python-setuptools \ extra/libjpeg-turbo \ extra/openjpeg2 \ @@ -23,8 +21,7 @@ RUN pacman -Sy --noconfirm \ mesa-libgl \ xorg-server-xvfb \ ghostscript \ - python2-pyqt5 \ - python-pyqt5 \ + python-pyqt5 \ pkg-config \ extra/fribidi \ extra/harfbuzz @@ -34,11 +31,6 @@ ADD depends /depends RUN cd /depends && ./install_imagequant.sh && ./install_raqm.sh RUN /sbin/useradd -m -U -u 1000 pillow && \ - virtualenv2 --system-site-packages /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install nose cffi olefile pytest pytest-cov && \ - /vpy/bin/pip install numpy --only-binary=:all: || true && \ - chown -R pillow:pillow /vpy && \ virtualenv --system-site-packages /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install nose cffi olefile pytest pytest-cov && \ diff --git a/arch/test.sh b/arch/test.sh index 17b56fae..ad2801b5 100755 --- a/arch/test.sh +++ b/arch/test.sh @@ -1,11 +1,6 @@ #!/bin/bash -source /vpy/bin/activate -cd /Pillow -make clean -make install-coverage -QT_QPA_PLATFORM=offscreen /usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests - source /vpy3/bin/activate +cd /Pillow make clean make install-coverage QT_QPA_PLATFORM=offscreen /usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests diff --git a/centos-6-amd64/Dockerfile b/centos-6-amd64/Dockerfile index 80775e3f..64af9156 100644 --- a/centos-6-amd64/Dockerfile +++ b/centos-6-amd64/Dockerfile @@ -2,7 +2,7 @@ FROM centos:6 run yum install -y epel-release centos-release-scl -run yum install -y python27 rh-python36 python-virtualenv \ +run yum install -y rh-python36 rh-python36-python-virtualenv \ gcc xorg-x11-server-Xvfb ghostscript sudo \ libtiff-devel libjpeg-devel zlib-devel freetype-devel \ lcms2-devel libwebp-devel openjpeg2-devel tkinter \ @@ -10,15 +10,7 @@ run yum install -y python27 rh-python36 python-virtualenv \ RUN useradd --uid 1000 pillow -RUN bash -c "source /opt/rh/python27/enable && \ - /opt/rh/python27/root/usr/bin/virtualenv -p python2.7 --system-site-packages /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install cffi olefile pytest pytest-cov && \ - /vpy/bin/pip install numpy --only-binary=:all: || true && \ - cat /opt/rh/python27/enable /vpy/bin/activate > /vpy/bin/activate2.7 && \ - mv /vpy/bin/activate2.7 /vpy/bin/activate && \ - chown -R pillow:pillow /vpy && \ - source /opt/rh/rh-python36/enable && \ +RUN bash -c "source /opt/rh/rh-python36/enable && \ /opt/rh/rh-python36/root/usr/bin/virtualenv -p python3.6 --system-site-packages /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install cffi olefile pytest pytest-cov && \ diff --git a/centos-6-amd64/test.sh b/centos-6-amd64/test.sh index 30844509..e4330712 100755 --- a/centos-6-amd64/test.sh +++ b/centos-6-amd64/test.sh @@ -1,12 +1,7 @@ #!/bin/bash -source /vpy/bin/activate +source /vpy3/bin/activate cd /Pillow export DISPLAY=:99.0 make clean make install-coverage /usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests - -source /vpy3/bin/activate -make clean -make install-coverage -/usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests diff --git a/centos-7-amd64/Dockerfile b/centos-7-amd64/Dockerfile index 950c3039..4080b7fd 100644 --- a/centos-7-amd64/Dockerfile +++ b/centos-7-amd64/Dockerfile @@ -2,7 +2,7 @@ FROM centos:7 run yum install -y epel-release centos-release-scl -run yum install -y python27 rh-python36 python-virtualenv \ +run yum install -y rh-python36 rh-python36-python-virtualenv \ gcc xorg-x11-server-Xvfb make which ghostscript sudo \ libtiff-devel libjpeg-devel zlib-devel freetype-devel \ lcms2-devel libwebp-devel openjpeg2-devel tkinter \ @@ -11,15 +11,7 @@ run yum install -y python27 rh-python36 python-virtualenv \ RUN useradd --uid 1000 pillow -RUN bash -c "source /opt/rh/python27/enable && \ - /opt/rh/python27/root/usr/bin/virtualenv -p python2.7 --system-site-packages /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install cffi olefile pytest pytest-cov && \ - /vpy/bin/pip install numpy --only-binary=:all: || true && \ - cat /opt/rh/python27/enable /vpy/bin/activate > /vpy/bin/activate2.7 && \ - mv /vpy/bin/activate2.7 /vpy/bin/activate && \ - chown -R pillow:pillow /vpy && \ - source /opt/rh/rh-python36/enable && \ +RUN bash -c "source /opt/rh/rh-python36/enable && \ /opt/rh/rh-python36/root/usr/bin/virtualenv -p python3.6 --system-site-packages /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install cffi olefile pytest pytest-cov && \ diff --git a/centos-7-amd64/test.sh b/centos-7-amd64/test.sh index 30844509..e4330712 100755 --- a/centos-7-amd64/test.sh +++ b/centos-7-amd64/test.sh @@ -1,12 +1,7 @@ #!/bin/bash -source /vpy/bin/activate +source /vpy3/bin/activate cd /Pillow export DISPLAY=:99.0 make clean make install-coverage /usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests - -source /vpy3/bin/activate -make clean -make install-coverage -/usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests diff --git a/debian-10-buster-x86/Dockerfile b/debian-10-buster-x86/Dockerfile index 4a3517b9..1f2312cd 100644 --- a/debian-10-buster-x86/Dockerfile +++ b/debian-10-buster-x86/Dockerfile @@ -33,24 +33,19 @@ RUN echo '#!/bin/sh' > /usr/sbin/policy-rc.d \ RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -y \ install xvfb sudo \ - git wget python-numpy python-scipy netpbm \ - python-qt4 ghostscript libffi-dev libjpeg-turbo-progs \ - python-setuptools python-virtualenv \ - python-dev python3-dev cmake \ + git wget python3-numpy python3-scipy netpbm \ + python3-pyqt5 ghostscript libffi-dev libjpeg-turbo-progs \ + python3-setuptools virtualenv \ + python3-dev cmake \ libtiff5-dev libjpeg62-turbo-dev libopenjp2-7-dev zlib1g-dev \ libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev \ - python-tk python3-tk \ + python3-tk \ libharfbuzz-dev libfribidi-dev && apt-get clean RUN useradd pillow && addgroup pillow sudo && \ mkdir /home/pillow && chown pillow:pillow /home/pillow -RUN virtualenv -p /usr/bin/python2.7 --system-site-packages /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install cffi olefile pytest pytest-cov && \ - /vpy/bin/pip install numpy --only-binary=:all: || true && \ - chown -R pillow:pillow /vpy && \ - virtualenv -p /usr/bin/python3.7 --system-site-packages /vpy3 && \ +RUN virtualenv -p /usr/bin/python3.7 --system-site-packages /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install cffi olefile pytest pytest-cov && \ /vpy3/bin/pip install numpy --only-binary=:all: || true && \ diff --git a/debian-10-buster-x86/test.sh b/debian-10-buster-x86/test.sh index 30844509..e4330712 100755 --- a/debian-10-buster-x86/test.sh +++ b/debian-10-buster-x86/test.sh @@ -1,12 +1,7 @@ #!/bin/bash -source /vpy/bin/activate +source /vpy3/bin/activate cd /Pillow export DISPLAY=:99.0 make clean make install-coverage /usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests - -source /vpy3/bin/activate -make clean -make install-coverage -/usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests diff --git a/debian-9-stretch-x86/Dockerfile b/debian-9-stretch-x86/Dockerfile index 465542ad..0ed2f477 100644 --- a/debian-9-stretch-x86/Dockerfile +++ b/debian-9-stretch-x86/Dockerfile @@ -33,24 +33,19 @@ RUN echo '#!/bin/sh' > /usr/sbin/policy-rc.d \ RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -y \ install xvfb sudo \ - git wget python-numpy python-scipy netpbm \ - python-qt4 ghostscript libffi-dev libjpeg-turbo-progs \ - python-setuptools python-virtualenv \ - python-dev python3-dev cmake \ + git wget python3-numpy python3-scipy netpbm \ + ghostscript libffi-dev libjpeg-turbo-progs \ + python3-setuptools virtualenv \ + python3-dev cmake \ libtiff5-dev libjpeg62-turbo-dev libopenjp2-7-dev zlib1g-dev \ libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev \ - python-tk python3-tk \ + python3-tk \ libharfbuzz-dev libfribidi-dev && apt-get clean RUN useradd pillow && addgroup pillow sudo && \ mkdir /home/pillow && chown pillow:pillow /home/pillow -RUN virtualenv -p /usr/bin/python2.7 --system-site-packages /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install cffi olefile pytest pytest-cov && \ - /vpy/bin/pip install numpy --only-binary=:all: || true && \ - chown -R pillow:pillow /vpy && \ - virtualenv -p /usr/bin/python3.5 --system-site-packages /vpy3 && \ +RUN virtualenv -p /usr/bin/python3.5 --system-site-packages /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install cffi olefile pytest pytest-cov && \ /vpy3/bin/pip install numpy --only-binary=:all: || true && \ diff --git a/debian-9-stretch-x86/test.sh b/debian-9-stretch-x86/test.sh index 30844509..e4330712 100755 --- a/debian-9-stretch-x86/test.sh +++ b/debian-9-stretch-x86/test.sh @@ -1,12 +1,7 @@ #!/bin/bash -source /vpy/bin/activate +source /vpy3/bin/activate cd /Pillow export DISPLAY=:99.0 make clean make install-coverage /usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests - -source /vpy3/bin/activate -make clean -make install-coverage -/usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests diff --git a/fedora-30-amd64/Dockerfile b/fedora-30-amd64/Dockerfile index d23199e3..105a25a4 100644 --- a/fedora-30-amd64/Dockerfile +++ b/fedora-30-amd64/Dockerfile @@ -1,9 +1,9 @@ FROM fedora:30 RUN dnf install -y redhat-rpm-config \ - python-devel python3-devel python-virtualenv python3-virtualenv make gcc \ + python3-devel python3-virtualenv make gcc \ libtiff-devel libjpeg-devel zlib-devel freetype-devel \ - lcms2-devel libwebp-devel openjpeg2-devel tkinter python3-tkinter \ + lcms2-devel libwebp-devel openjpeg2-devel python3-tkinter \ tcl-devel tk-devel harfbuzz-devel fribidi-devel libraqm-devel \ libimagequant-devel \ xorg-x11-server-Xvfb which @@ -11,12 +11,7 @@ RUN dnf install -y redhat-rpm-config \ RUN useradd pillow && \ chown pillow:pillow /home/pillow -RUN /usr/bin/python2.7 /usr/lib/python2.7/site-packages/virtualenv.py --system-site-packages /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install cffi olefile pytest pytest-cov && \ - /vpy/bin/pip install numpy --only-binary=:all: || true && \ - chown -R pillow:pillow /vpy && \ - /usr/bin/python3.7 /usr/lib/python3.7/site-packages/virtualenv.py --system-site-packages /vpy3 && \ +RUN /usr/bin/python3.7 /usr/lib/python3.7/site-packages/virtualenv.py --system-site-packages /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install cffi olefile pytest pytest-cov && \ /vpy3/bin/pip install numpy --only-binary=:all: || true && \ diff --git a/fedora-30-amd64/test.sh b/fedora-30-amd64/test.sh index 377f8a33..815f05fe 100755 --- a/fedora-30-amd64/test.sh +++ b/fedora-30-amd64/test.sh @@ -1,10 +1,4 @@ #!/bin/bash -source /vpy/bin/activate -cd /Pillow -make clean -make install-coverage -/usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests - source /vpy3/bin/activate cd /Pillow make clean diff --git a/ubuntu-16.04-xenial-amd64/Dockerfile b/ubuntu-16.04-xenial-amd64/Dockerfile index 740e906a..ed98affd 100644 --- a/ubuntu-16.04-xenial-amd64/Dockerfile +++ b/ubuntu-16.04-xenial-amd64/Dockerfile @@ -2,24 +2,19 @@ FROM ubuntu:xenial RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -y \ install sudo xvfb \ - git wget python-virtualenv python-numpy python-scipy netpbm \ - python-pyqt5 ghostscript libffi-dev libjpeg-turbo-progs \ - python-dev python-setuptools \ + git wget virtualenv python3-numpy python3-scipy netpbm \ + python3-pyqt5 ghostscript libffi-dev libjpeg-turbo-progs \ + python3-setuptools \ python3-dev cmake \ libtiff5-dev libjpeg8-dev libopenjp2-7-dev zlib1g-dev \ libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev \ - python-tk python3-tk \ + python3-tk \ libharfbuzz-dev libfribidi-dev && apt-get clean RUN useradd pillow && addgroup pillow sudo && \ mkdir /home/pillow && chown pillow:pillow /home/pillow -RUN virtualenv -p /usr/bin/python2.7 --system-site-packages /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install cffi olefile pytest pytest-cov && \ - /vpy/bin/pip install numpy --only-binary=:all: || true && \ - chown -R pillow:pillow /vpy && \ - virtualenv -p /usr/bin/python3.5 --system-site-packages /vpy3 && \ +RUN virtualenv -p /usr/bin/python3.5 --system-site-packages /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install cffi olefile pytest pytest-cov && \ /vpy3/bin/pip install numpy --only-binary=:all: || true && \ diff --git a/ubuntu-16.04-xenial-amd64/test.sh b/ubuntu-16.04-xenial-amd64/test.sh index 377f8a33..815f05fe 100755 --- a/ubuntu-16.04-xenial-amd64/test.sh +++ b/ubuntu-16.04-xenial-amd64/test.sh @@ -1,10 +1,4 @@ #!/bin/bash -source /vpy/bin/activate -cd /Pillow -make clean -make install-coverage -/usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests - source /vpy3/bin/activate cd /Pillow make clean diff --git a/ubuntu-18.04-bionic-amd64/Dockerfile b/ubuntu-18.04-bionic-amd64/Dockerfile index 0bbf6953..97930f7a 100644 --- a/ubuntu-18.04-bionic-amd64/Dockerfile +++ b/ubuntu-18.04-bionic-amd64/Dockerfile @@ -2,23 +2,19 @@ FROM ubuntu:bionic RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -y \ install sudo xvfb \ - git wget python-virtualenv python-numpy python-scipy netpbm \ - python-pyqt5 ghostscript libffi-dev libjpeg-turbo-progs \ - python-dev python-setuptools \ + git wget virtualenv python3-numpy python3-scipy netpbm \ + ghostscript libffi-dev libjpeg-turbo-progs \ + python3-setuptools \ python3-dev cmake \ libtiff5-dev libjpeg8-dev libopenjp2-7-dev zlib1g-dev \ libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev \ - python-tk python3-tk \ + python3-tk \ libharfbuzz-dev libfribidi-dev && apt-get clean RUN useradd pillow && addgroup pillow sudo && \ mkdir /home/pillow && chown pillow:pillow /home/pillow -RUN virtualenv -p /usr/bin/python2.7 --system-site-packages /vpy && \ - /vpy/bin/pip install --upgrade pip && \ - /vpy/bin/pip install cffi olefile pytest pytest-cov && \ - chown -R pillow:pillow /vpy && \ - virtualenv -p /usr/bin/python3.6 --system-site-packages /vpy3 && \ +RUN virtualenv -p /usr/bin/python3.6 --system-site-packages /vpy3 && \ /vpy3/bin/pip install --upgrade pip && \ /vpy3/bin/pip install cffi olefile pytest pytest-cov && \ chown -R pillow:pillow /vpy3 diff --git a/ubuntu-18.04-bionic-amd64/test.sh b/ubuntu-18.04-bionic-amd64/test.sh index 377f8a33..815f05fe 100755 --- a/ubuntu-18.04-bionic-amd64/test.sh +++ b/ubuntu-18.04-bionic-amd64/test.sh @@ -1,10 +1,4 @@ #!/bin/bash -source /vpy/bin/activate -cd /Pillow -make clean -make install-coverage -/usr/bin/xvfb-run -a pytest -vx --cov PIL --cov-report term Tests - source /vpy3/bin/activate cd /Pillow make clean