[pypy-commit] pypy default: Don't run these tests under -A

alex_gaynor noreply at buildbot.pypy.org
Sun Jul 3 06:14:13 CEST 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r45298:83f6ecc84a52
Date: 2011-07-02 21:21 -0700
http://bitbucket.org/pypy/pypy/changeset/83f6ecc84a52/

Log:	Don't run these tests under -A

diff --git a/pypy/objspace/std/test/test_celldict.py b/pypy/objspace/std/test/test_celldict.py
--- a/pypy/objspace/std/test/test_celldict.py
+++ b/pypy/objspace/std/test/test_celldict.py
@@ -43,6 +43,8 @@
     OPTIONS = {"objspace.std.withcelldict": True}
 
     def setup_class(cls):
+        if option.runappdirect:
+            py.test.skip("__repr__ doesn't work on appdirect")
         strategy = ModuleDictStrategy(cls.space)
         storage = strategy.get_empty_storage()
         cls.w_d = W_DictMultiObject(cls.space, strategy, storage)


More information about the pypy-commit mailing list