summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAkihiro Motoki <motoki@da.jp.nec.com>2014-03-19 10:37:08 +0900
committerAkihiro Motoki <motoki@da.jp.nec.com>2014-03-19 10:37:08 +0900
commit27d238d2954ff27b1c10f899479e54ed1ec00703 (patch)
tree75e5ab3e2d9ab8f01029e878f5087cc8dd0d4d16 /tox.ini
parent5613ea7e97030b6438b30efc716f3a9673e02cef (diff)
downloadpython-neutronclient-27d238d2954ff27b1c10f899479e54ed1ec00703.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. The work around is suggested in the comment in bug 1290562. Change-Id: Iac2ec604447b1638550219cd2e407daf188f8ede 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 a498e52..6563088 100644
--- a/tox.ini
+++ b/tox.ini
@@ -14,6 +14,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
distribute = false