[pypy-svn] r69456 - pypy/branch/unpackiterable-improvements/pypy/objspace/std/test

fijal at codespeak.net fijal at codespeak.net
Thu Nov 19 22:38:07 CET 2009


Author: fijal
Date: Thu Nov 19 22:38:06 2009
New Revision: 69456

Modified:
   pypy/branch/unpackiterable-improvements/pypy/objspace/std/test/test_userobject.py
Log:
Simply skip this test when run appdirect, makes no sense


Modified: pypy/branch/unpackiterable-improvements/pypy/objspace/std/test/test_userobject.py
==============================================================================
--- pypy/branch/unpackiterable-improvements/pypy/objspace/std/test/test_userobject.py	(original)
+++ pypy/branch/unpackiterable-improvements/pypy/objspace/std/test/test_userobject.py	Thu Nov 19 22:38:06 2009
@@ -283,6 +283,8 @@
 
         cls.prev_installer = multimethod.Installer
         multimethod.Installer = multimethod.InstallerVersion2
+        if conftest.option.runappdirect:
+            py.test.skip("Cannot run different installers when runappdirect")
         config = conftest.make_config(conftest.option, **cls.OPTIONS)
         cls.space = conftest.maketestobjspace(config)
 



More information about the Pypy-commit mailing list