From a9adfa91141dbbbb54bda6a5c0b204d9e10580e2 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Tue, 20 Nov 2012 11:52:06 +0100 Subject: [PATCH] don't run long-args test on windows because it can't work --- testing/test_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/test_config.py b/testing/test_config.py index c1de49ed8..1e3eb6d70 100644 --- a/testing/test_config.py +++ b/testing/test_config.py @@ -316,6 +316,7 @@ def test_cmdline_processargs_simple(testdir): ]) +@pytest.mark.skipif("sys.platform == 'win32'") def test_toolongargs_issue224(testdir): result = testdir.runpytest("-m", "hello" * 500) assert result.ret == 0