From 28c8e4acbf9307c29fb82f5657c6b48610dae332 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 11 Sep 2015 07:37:54 +0200 Subject: [PATCH] Unskip GUIProcess tests on Windows. --- tests/unit/misc/test_guiprocess.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/unit/misc/test_guiprocess.py b/tests/unit/misc/test_guiprocess.py index 2212f7068..30079196a 100644 --- a/tests/unit/misc/test_guiprocess.py +++ b/tests/unit/misc/test_guiprocess.py @@ -38,9 +38,6 @@ def guiprocess_message_mock(message_mock): @pytest.yield_fixture() def proc(qtbot): """A fixture providing a GUIProcess and cleaning it up after the test.""" - if os.name == 'nt': - # WORKAROUND for https://github.com/pytest-dev/pytest-qt/issues/67 - pytest.skip("Test is flaky on Windows...") p = guiprocess.GUIProcess(0, 'testprocess') yield p if p._proc.state() == QProcess.Running: @@ -88,8 +85,6 @@ def test_start_verbose(proc, qtbot, guiprocess_message_mock, py_proc): assert bytes(proc._proc.readAll()).rstrip() == b'test' -# WORKAROUND for https://github.com/pytest-dev/pytest-qt/issues/67 -@pytest.mark.skipif(os.name == 'nt', reason="Test is flaky on Windows...") @pytest.mark.not_frozen def test_start_env(monkeypatch, qtbot, py_proc): monkeypatch.setenv('QUTEBROWSER_TEST_1', '1')