Actions
Bug #7261
closed[Tests] services/dockercleaner test missing setuptools install
Story points:
0.5
Description
Other tests that use mock seem to install the newer version of setuptools into the test virtualenv to satisfy the requirement of the mock package, but services/dockercleaner seems to be missing this step, so the test fails on machines with an older setuptools.
Updated by Brett Smith over 10 years ago
- Story points set to 0.5
- Subject changed from services/dockercleaner test missing setuptools install to [Tests] services/dockercleaner test missing setuptools install
This distinction exists because the Docker cleaner is Python 3 while everything else is Python 2. The setuptools upgrade for Python 2 happens very early in run-tests.sh, right after we set up the virtualenv. We're not doing the same thing for the Python 3 virtualenv. Apparently we need to.
Updated by Joshua Randall over 10 years ago
- Assigned To set to Joshua Randall
- % Done changed from 0 to 90
This should be fixed by https://github.com/curoverse/arvados-dev/pull/1
Updated by Brett Smith over 10 years ago
- Status changed from In Progress to Resolved
Merged the pull request. Thanks!
Actions