[pypy-svn] r61455 - pypy/trunk/lib-python

fijal at codespeak.net fijal at codespeak.net
Fri Jan 30 10:46:16 CET 2009


Author: fijal
Date: Fri Jan 30 10:46:16 2009
New Revision: 61455

Modified:
   pypy/trunk/lib-python/conftest.py
Log:
skip test_parser and test_compiler.


Modified: pypy/trunk/lib-python/conftest.py
==============================================================================
--- pypy/trunk/lib-python/conftest.py	(original)
+++ pypy/trunk/lib-python/conftest.py	Fri Jan 30 10:46:16 2009
@@ -175,7 +175,7 @@
     RegrTest('test_commands.py'),
     RegrTest('test_compare.py', core=True),
     RegrTest('test_compile.py', core=True),
-    RegrTest('test_compiler.py', core=False),
+    RegrTest('test_compiler.py', core=False, skip="slowly deprecating compiler"),
     RegrTest('test_complex.py', core=True),
 
     RegrTest('test_contains.py', core=True),
@@ -310,7 +310,7 @@
 
     RegrTest('test_os.py', core=True),
     RegrTest('test_ossaudiodev.py', skip="unsupported extension module"),
-    RegrTest('test_parser.py', core=True),
+    RegrTest('test_parser.py', skip="slowly deprecating compiler"),
 
     RegrTest('test_peepholer.py'),
     RegrTest('test_pep247.py'),



More information about the Pypy-commit mailing list