From 40f7f29fc745587a070deaccf5efc749fe8217e5 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Mon, 22 Feb 2016 13:00:48 -0600 Subject: [PATCH] Remove pypy from tox environment list Pypy is a supported python interpretor for python-cinderclient, but I don't think it's necessary to run all unit tests with it for everyone. We do have the gate-python-cinderclient-pypy test to validate there are no incompatibilities. Pypy is also not available by default, so it is an extra step for someone to know to install and set up the pypy environment before they can run tox without failures. Change-Id: I15e315415574dfe8cf8a3d5f7f968a082b81b165 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index b08c4daba..b9ae5a3bd 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] distribute = False -envlist = py34,py27,pypy,pep8 +envlist = py34,py27,pep8 minversion = 1.6 skipsdist = True