From 1a1862a10dc98f0e18fc44cf685f1cd0b13e4895 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 16 Sep 2015 20:26:31 +0200 Subject: [PATCH] Increase timeout. --- tests/unit/misc/test_guiprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/misc/test_guiprocess.py b/tests/unit/misc/test_guiprocess.py index f043e9607..4e4ee162b 100644 --- a/tests/unit/misc/test_guiprocess.py +++ b/tests/unit/misc/test_guiprocess.py @@ -184,7 +184,7 @@ def test_start_logging(fake_proc, caplog): def test_error(qtbot, proc, caplog, guiprocess_message_mock): """Test the process emitting an error.""" with caplog.atLevel(logging.ERROR, 'message'): - with qtbot.waitSignal(proc.error, raising=True): + with qtbot.waitSignal(proc.error, raising=True, timeout=5000): proc.start('this_does_not_exist_either', []) msg = guiprocess_message_mock.getmsg(guiprocess_message_mock.Level.error,