[py-svn] r37174 - py/branch/config/py/test/testing

fijal at codespeak.net fijal at codespeak.net
Tue Jan 23 11:26:54 CET 2007


Author: fijal
Date: Tue Jan 23 11:26:53 2007
New Revision: 37174

Modified:
   py/branch/config/py/test/testing/test_collect.py
Log:
Skip those tests if boxing is enabled


Modified: py/branch/config/py/test/testing/test_collect.py
==============================================================================
--- py/branch/config/py/test/testing/test_collect.py	(original)
+++ py/branch/config/py/test/testing/test_collect.py	Tue Jan 23 11:26:53 2007
@@ -266,6 +266,8 @@
     assert len(l) == 1
 
 def test_order_of_execution_generator_same_codeline():
+    if py.test.config.is_boxed():
+        py.test.skip("Does not work with boxing")
     test_list = []
     expected_list = range(6)
 
@@ -283,6 +285,8 @@
 
 
 def test_order_of_execution_generator_different_codeline():
+    if py.test.config.is_boxed():
+        py.test.skip("Does not work with boxing")
     test_list = []
     expected_list = range(3)
 



More information about the pytest-commit mailing list