From 196d1e95be61ff8c46c721b854b54e8623a33b68 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 23 Nov 2015 20:33:11 +0100 Subject: [PATCH] tests: Skip test_normal_connection IPC test on OS X. Seems like it hangs there sometimes. --- 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 708858dbc..e3a977e30 100644 --- a/tests/unit/misc/test_ipc.py +++ b/tests/unit/misc/test_ipc.py @@ -677,7 +677,7 @@ class TestSendOrListen: yield legacy_server legacy_server.shutdown() - @pytest.mark.posix(reason="Flaky on Windows") + @pytest.mark.linux(reason="Flaky on Windows and OS X") def test_normal_connection(self, caplog, qtbot, args): ret_server = ipc.send_or_listen(args) assert isinstance(ret_server, ipc.IPCServer)