Author: Armin Rigo <[email protected]>
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')
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to