[pypy-commit] pypy py3.5: Undo change of conftest (load python3 again), needs more fixes later

raffael_t pypy.commits at gmail.com
Sun Aug 14 10:17:13 EDT 2016


Author: Raffael Tfirst <raffael.tfirst at gmail.com>
Branch: py3.5
Changeset: r86187:d564da75d49d
Date: 2016-08-14 16:16 +0200
http://bitbucket.org/pypy/pypy/changeset/d564da75d49d/

Log:	Undo change of conftest (load python3 again), needs more fixes later

diff --git a/pypy/conftest.py b/pypy/conftest.py
--- a/pypy/conftest.py
+++ b/pypy/conftest.py
@@ -5,7 +5,7 @@
     # some tests fail otherwise
     sys.setrecursionlimit(2000)
 
-PYTHON3 = os.getenv('PYTHON3') or py.path.local.sysfind('python3.5')
+PYTHON3 = os.getenv('PYTHON3') or py.path.local.sysfind('python3')
 if PYTHON3 is not None:
     PYTHON3 = str(PYTHON3)
 


More information about the pypy-commit mailing list