From 6bd092a94869abab4786c25c1ca46d0c41b5faa4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 20 Jan 2016 20:34:19 +0100 Subject: [PATCH] tests: Skip custom_environment_no_system on Win. Seems like it's broken on AppVeyor for some reason. --- tests/integration/test_testprocess.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_testprocess.py b/tests/integration/test_testprocess.py index 523af3b66..8a42717f1 100644 --- a/tests/integration/test_testprocess.py +++ b/tests/integration/test_testprocess.py @@ -158,6 +158,7 @@ def test_custom_environment(pyproc): pyproc.wait_for(data='blah') +@pytest.mark.posix def test_custom_environment_no_system(monkeypatch, pyproc): """When env=... is given, no system environment should be present.""" monkeypatch.setenv('QUTE_TEST_ENV', 'blah')