From 691d865a7ee414387db812746e0192dfe5b95c8b Mon Sep 17 00:00:00 2001 From: mprahl Date: Mon, 9 Mar 2020 16:20:47 -0400 Subject: [PATCH] Install zipp in the CentOS test image to prevent a tox exception --- docker/Dockerfile-tests | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/Dockerfile-tests b/docker/Dockerfile-tests index 22a28bde..a57a78c2 100644 --- a/docker/Dockerfile-tests +++ b/docker/Dockerfile-tests @@ -53,6 +53,8 @@ RUN yum -y install \ # We currently require newer versions of these Python packages for the tests. # more-itertools is required by pytest, but versions 6.0.0 and up aren't Python 2 compatible RUN pip install --upgrade flask-sqlalchemy "pytest<5.0" flake8 tox pip "more-itertools<6.0.0" pytest-cov +# Install zipp as a workaround for https://github.com/pypa/virtualenv/issues/1630 +RUN pip install zipp VOLUME /src WORKDIR /src ENTRYPOINT ["docker/test.sh"]