From fbf53168c265b67479eda9cbb4610eacc5ce891c Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 9 Aug 2015 19:23:34 +0200 Subject: [PATCH] Skip test_double_start_finished on Windows. It seems the process sometimes crashes... --- tests/misc/test_guiprocess.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/misc/test_guiprocess.py b/tests/misc/test_guiprocess.py index ac0d40405..b2afb6685 100644 --- a/tests/misc/test_guiprocess.py +++ b/tests/misc/test_guiprocess.py @@ -21,6 +21,7 @@ """Tests for qutebrowser.misc.guiprocess.""" +import os import sys import textwrap import logging @@ -98,6 +99,7 @@ def test_double_start(qtbot, proc): @pytest.mark.not_frozen +@pytest.mark.skipif(os.name == 'nt', reason="Test is flaky on Windows...") def test_double_start_finished(qtbot, proc): """Test starting a GUIProcess twice (with the first call finished).""" with qtbot.waitSignals([proc.started, proc.finished], raising=True,