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

hpk at codespeak.net hpk at codespeak.net
Sun Jan 28 11:42:14 CET 2007


Author: hpk
Date: Sun Jan 28 11:42:13 2007
New Revision: 37461

Modified:
   py/trunk/py/apigen/testing/test_apigen_example.py
Log:
skip these tests on windows (some reliances on unix-paths
and i don't think apigen can run on windows anyway at the moment)



Modified: py/trunk/py/apigen/testing/test_apigen_example.py
==============================================================================
--- py/trunk/py/apigen/testing/test_apigen_example.py	(original)
+++ py/trunk/py/apigen/testing/test_apigen_example.py	Sun Jan 28 11:42:13 2007
@@ -8,6 +8,10 @@
 from py.__.test.web import webcheck
 from py.__.apigen.conftest import option
 
+def setup_module(mod):
+    if py.std.sys.platform == "win32": 
+        py.test.skip("apigen does not fully support win32 yet") 
+
 def run_string_sequence_test(data, seq):
     currpos = -1
     for s in seq:



More information about the pytest-commit mailing list