From f320da07b49fcec41c7d44b7f88c8f5173c5d33f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 10 Sep 2017 14:28:42 +0200 Subject: [PATCH] Increase timeout for test_version --- tests/end2end/test_invocations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/end2end/test_invocations.py b/tests/end2end/test_invocations.py index ff6e110d7..4a416a752 100644 --- a/tests/end2end/test_invocations.py +++ b/tests/end2end/test_invocations.py @@ -175,7 +175,7 @@ def test_version(request): proc.start(sys.executable, args) ok = proc.waitForStarted(2000) assert ok - ok = proc.waitForFinished(2000) + ok = proc.waitForFinished(10000) stdout = bytes(proc.readAllStandardOutput()).decode('utf-8') print(stdout)