From 107934e4e1468b98b4a9849a4dd6949a03fcc2fd Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 20 May 2016 16:03:52 +0200 Subject: [PATCH] bdd: Wait a bit in "No crash should happen" step If we don't do this, the qutebrowser process will be terminated and exit before it actually has a chance to crash. See #1510 --- tests/integration/features/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/features/conftest.py b/tests/integration/features/conftest.py index 29f719080..9a6b1f6b7 100644 --- a/tests/integration/features/conftest.py +++ b/tests/integration/features/conftest.py @@ -330,7 +330,7 @@ def no_crash(): This is actually a NOP as a crash is already checked in the log. """ - pass + time.sleep(0.5) @bdd.then(bdd.parsers.parse("the header {header} should be set to {value}"))