[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
This commit is contained in:
parent
a938384607
commit
b5d79a847b
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue