[py-svn] r38819 - py/trunk/py/apigen/testing

hpk at codespeak.net hpk at codespeak.net
Wed Feb 14 13:44:53 CET 2007


Author: hpk
Date: Wed Feb 14 13:44:52 2007
New Revision: 38819

Modified:
   py/trunk/py/apigen/testing/test_apigen_functional.py
Log:
skip apigen on win32


Modified: py/trunk/py/apigen/testing/test_apigen_functional.py
==============================================================================
--- py/trunk/py/apigen/testing/test_apigen_functional.py	(original)
+++ py/trunk/py/apigen/testing/test_apigen_functional.py	Wed Feb 14 13:44:52 2007
@@ -6,6 +6,9 @@
 import py
 from py.__.apigen import apigen
 
+def setup_module(mod):
+    if py.std.sys.platform == "win32":
+        py.test.skip("not supported with win32 yet")
 
 def setup_fs_project(name):
     temp = py.test.ensuretemp(name)



More information about the pytest-commit mailing list