From b5d79a847b101b3f61c3bf3a5e6a6bc7e27257ca Mon Sep 17 00:00:00 2001 From: hpk Date: Sun, 28 Jan 2007 11:42:13 +0100 Subject: [PATCH] [svn r37461] skip these tests on windows (some reliances on unix-paths and i don't think apigen can run on windows anyway at the moment) --HG-- branch : trunk --- py/apigen/testing/test_apigen_example.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/py/apigen/testing/test_apigen_example.py b/py/apigen/testing/test_apigen_example.py index f0b8f5004..5996b1d18 100644 --- a/py/apigen/testing/test_apigen_example.py +++ b/py/apigen/testing/test_apigen_example.py @@ -8,6 +8,10 @@ from py.__.apigen.project import Project 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: