From 40c7990d3ae018de920c1c7a0a77ee43843240e4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 12 Nov 2015 22:16:39 +0100 Subject: [PATCH] tests: Skip ipc TestSendToRunningInstance on OS X. This did hang often on OS X, and I don't have the time to properly debug this. See #1045. --- tests/unit/misc/test_ipc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/misc/test_ipc.py b/tests/unit/misc/test_ipc.py index 6649f2593..708858dbc 100644 --- a/tests/unit/misc/test_ipc.py +++ b/tests/unit/misc/test_ipc.py @@ -544,7 +544,7 @@ class TestSendToRunningInstance: assert msg == "No existing instance present (error 2)" @pytest.mark.parametrize('has_cwd', [True, False]) - @pytest.mark.posix(reason="Causes random trouble on Windows") + @pytest.mark.linux(reason="Causes random trouble on Windows and OS X") def test_normal(self, qtbot, tmpdir, ipc_server, mocker, has_cwd): ipc_server.listen() spy = QSignalSpy(ipc_server.got_args)