From 914ce85780f1c5549041c40c34ee97001df86cd0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 18 Aug 2016 23:31:18 +0200 Subject: [PATCH] tests: Fix quteproc_new fixture --- tests/end2end/fixtures/quteprocess.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index 4d977da6e..60b0c14fe 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -636,6 +636,7 @@ def quteproc_new(qapp, httpbin, request): request.node._quteproc_log = proc.captured_log # Not calling before_test here as that would start the process yield proc + call = request.node.rep_call did_fail = call.failed or hasattr(call, 'wasxfail') proc.after_test(did_fail=did_fail) proc.terminate()