From c692a0ee9cd73671d4f83a78ecb9cf7999ea5b8b Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Sat, 6 Sep 2014 18:44:18 +0100 Subject: [PATCH] Remove jython from tested python versions After testing with the jython 2.7 beta it seems it will require some work to get jython back working. So for now remove it from this list so it doesn't get picked up by normal test runs. --- testing/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/conftest.py b/testing/conftest.py index 3e905957a..8bf467866 100644 --- a/testing/conftest.py +++ b/testing/conftest.py @@ -103,7 +103,7 @@ def getexecutable(name, cache={}): return executable @pytest.fixture(params=['python2.6', 'python2.7', 'python3.3', "python3.4", - 'pypy', 'pypy3', 'jython']) + 'pypy', 'pypy3']) def anypython(request): name = request.param executable = getexecutable(name)