summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorKevin L. Mitchell <kevin.mitchell@rackspace.com>2014-03-18 11:37:57 -0500
committerKevin L. Mitchell <kevin.mitchell@rackspace.com>2014-03-18 11:37:57 -0500
commit8c7524b8bf6a5eb1f0bc77515e9ad95bdee826b0 (patch)
tree23c43908d0422f0fb70840a2bea2005bd483d306 /tox.ini
parent14deb0194e38bb53a753085ac0aab8ca4038cf5f (diff)
downloadpython-novaclient-8c7524b8bf6a5eb1f0bc77515e9ad95bdee826b0.tar.gz
Work around pypy testing issue
A recent release of setuptools appears to have introduced a bug that causes the pypy gate tests to fail. This applies a temporary workaround that should restore pypy testing while the root cause of the problem is researched. Change-Id: I66597e40c1d2e57cca1292844d228af85214197d Partial-Bug: 1290562
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 5 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index b85bd293..a8d9956d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,6 +12,11 @@ deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --testr-args='{posargs}'
+[testenv:pypy]
+deps = setuptools<3.2
+ -r{toxinidir}/requirements.txt
+ -r{toxinidir}/test-requirements.txt
+
[testenv:pep8]
commands = flake8