[pypy-commit] pypy dict-strategies: another skip, and fix a missing import

cfbolz noreply at buildbot.pypy.org
Tue Jun 28 13:29:55 CEST 2011


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: dict-strategies
Changeset: r45155:3566aff64215
Date: 2011-06-28 13:36 +0200
http://bitbucket.org/pypy/pypy/changeset/3566aff64215/

Log:	another skip, and fix a missing import

diff --git a/pypy/objspace/std/test/test_dictmultiobject.py b/pypy/objspace/std/test/test_dictmultiobject.py
--- a/pypy/objspace/std/test/test_dictmultiobject.py
+++ b/pypy/objspace/std/test/test_dictmultiobject.py
@@ -1,3 +1,4 @@
+import py
 import sys
 from pypy.interpreter.error import OperationError
 from pypy.objspace.std.dictmultiobject import \
@@ -737,6 +738,8 @@
 class AppTestModuleDict(object):
     def setup_class(cls):
         cls.space = gettestobjspace(**{"objspace.std.withcelldict": True})
+        if option.runappdirect:
+            py.test.skip("__repr__ doesn't work on appdirect")
 
     def w_impl_used(self, obj):
         import __pypy__


More information about the pypy-commit mailing list