From 8c7524b8bf6a5eb1f0bc77515e9ad95bdee826b0 Mon Sep 17 00:00:00 2001 From: "Kevin L. Mitchell" Date: Tue, 18 Mar 2014 11:37:57 -0500 Subject: [PATCH] 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 --- tox.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tox.ini b/tox.ini index b85bd2938..a8d9956d4 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