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.
This commit is contained in:
Florian Bruhin 2015-11-12 22:16:39 +01:00
parent 85c82b32fb
commit 40c7990d3a

View File

@ -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)