[py-svn] r38824 - py/trunk/py/apigen/tracer/testing

hpk at codespeak.net hpk at codespeak.net
Wed Feb 14 14:11:36 CET 2007


Author: hpk
Date: Wed Feb 14 14:11:34 2007
New Revision: 38824

Modified:
   py/trunk/py/apigen/tracer/testing/test_docgen.py
Log:
skip these tests on win32


Modified: py/trunk/py/apigen/tracer/testing/test_docgen.py
==============================================================================
--- py/trunk/py/apigen/tracer/testing/test_docgen.py	(original)
+++ py/trunk/py/apigen/tracer/testing/test_docgen.py	Wed Feb 14 14:11:34 2007
@@ -13,13 +13,10 @@
 from py.__.apigen.tracer.description import FunctionDesc
 from py.__.apigen.tracer import model
 from py.__.apigen.tracer.permastore import PermaDocStorage
-#    from pypy.annotation import model
-#except ImportError, s:
-#    py.test.skip("Cannot import: %s" % str(s))
-
-#def setup_module(mod):
-#    data_path = py.path.local(mod.__file__).dirpath().join("data")
-#    sys.path.insert(0, str(data_path))
+
+def setup_module(mod):
+    if py.std.sys.platform == "win32":
+        py.test.skip("tracing on win32 not supported") 
 
 # XXX: Perma doc storage disabled a bit
 



More information about the pytest-commit mailing list