[pypy-commit] pypy py3k: this tests specifically our own code module modifications, so skip it under

pjenvey noreply at buildbot.pypy.org
Sat Jul 20 03:49:45 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r65502:897dfe5eadb6
Date: 2013-07-19 18:48 -0700
http://bitbucket.org/pypy/pypy/changeset/897dfe5eadb6/

Log:	this tests specifically our own code module modifications, so skip
	it under appdirect

diff --git a/pypy/module/test_lib_pypy/test_code_module.py b/pypy/module/test_lib_pypy/test_code_module.py
--- a/pypy/module/test_lib_pypy/test_code_module.py
+++ b/pypy/module/test_lib_pypy/test_code_module.py
@@ -1,5 +1,12 @@
+import py
+
+
 class AppTestCodeModule:
 
+    def setup_class(cls):
+        if cls.runappdirect:
+            py.test.skip("CPython's code module doesn't yet support this")
+
     def w_get_interp(self):
         import code
         import io


More information about the pypy-commit mailing list