From 27ee09a7a145e9fc453877638f4e71cfa76d013b Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 3 Sep 2015 14:35:27 +0200 Subject: [PATCH] ipc: Skip test_normal on Windows. --- tests/unit/misc/test_ipc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/misc/test_ipc.py b/tests/unit/misc/test_ipc.py index ee210c292..6b49f1201 100644 --- a/tests/unit/misc/test_ipc.py +++ b/tests/unit/misc/test_ipc.py @@ -283,6 +283,7 @@ def connected_socket(qtbot, qlocalsocket, ipc_server): @pytest.mark.parametrize('has_cwd', [True, False]) +@pytest.mark.posix # Causes random trouble on Windows def test_normal(qtbot, tmpdir, ipc_server, mocker, has_cwd): ipc_server.listen() spy = QSignalSpy(ipc_server.got_args)