[pypy-commit] pypy py3.5: Meant to be turned off by default

arigo pypy.commits at gmail.com
Tue Sep 13 12:07:52 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r87083:5c0791e6dc4c
Date: 2016-09-13 18:07 +0200
http://bitbucket.org/pypy/pypy/changeset/5c0791e6dc4c/

Log:	Meant to be turned off by default

diff --git a/pypy/interpreter/astcompiler/test/test_validate.py b/pypy/interpreter/astcompiler/test/test_validate.py
--- a/pypy/interpreter/astcompiler/test/test_validate.py
+++ b/pypy/interpreter/astcompiler/test/test_validate.py
@@ -396,7 +396,7 @@
 
     def test_stdlib_validates(self):
         stdlib = os.path.join(os.path.dirname(ast.__file__), '../../../lib-python/3')
-        if 1:    # enable manually for a complete test
+        if 0:    # enable manually for a complete test
             tests = [fn for fn in os.listdir(stdlib) if fn.endswith('.py')]
             tests += ['test/'+fn for fn in os.listdir(stdlib+'/test')
                                  if fn.endswith('.py')


More information about the pypy-commit mailing list