summaryrefslogtreecommitdiff
path: root/test/integration
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2017-06-01 16:23:32 +0800
committerJames Cammarata <jimi@sngx.net>2017-06-01 12:14:24 -0500
commitda8963d788d3ab4ee1376081a19cc5b7dc432864 (patch)
tree383b21067464978166d6ba2de251e08275b26729 /test/integration
parent250a1cfecab36c05c2a6495c665be927877f6541 (diff)
downloadansible-da8963d788d3ab4ee1376081a19cc5b7dc432864.tar.gz
Temporary work-around for setuptools 36.0.0 bug. (#25243)
* Temporary work-around for setuptools 36.0.0 bug. * Use older setuptools for pip integration test. * Limit isort version to avoid new test failures. (cherry picked from commit 9d8aa43c67169dfcaba7d9de27b69d02c761f7de)
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/targets/pip/tasks/pip.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/integration/targets/pip/tasks/pip.yml b/test/integration/targets/pip/tasks/pip.yml
index 658e4711b6..b6df5ec297 100644
--- a/test/integration/targets/pip/tasks/pip.yml
+++ b/test/integration/targets/pip/tasks/pip.yml
@@ -83,6 +83,9 @@
- name: make sure the test env doesn't exist
file: state=absent name={{ output_dir }}/pipenv
+- name: install a working version of setuptools in the virtualenv
+ pip: name=setuptools virtualenv={{ output_dir }}/pipenv state=present version=33.1.1
+
- name: create a requirement file with an vcs url
copy: dest={{ output_dir }}/pipreq.txt
content="-e git+https://github.com/dvarrazzo/pyiso8601#egg=pyiso8601"