From cd128bec8e43ad62667c19196a01eb4d2e937e1c Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 20 Apr 2016 22:39:52 +0200 Subject: [PATCH] bdd: __tracbackhide__ in QuteProcess._wait_for_* This should improve the output we got here: https://ci.appveyor.com/project/The-Compiler/qutebrowser/build/master-2404/job/gr7m54km6h6nul04 --- tests/integration/testprocess.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/testprocess.py b/tests/integration/testprocess.py index a26b06a3d..1898a24ba 100644 --- a/tests/integration/testprocess.py +++ b/tests/integration/testprocess.py @@ -338,6 +338,7 @@ class Process(QObject): Return: either the found line or None. """ + __tracebackhide__ = True for line in self._data: matches = [] @@ -358,6 +359,7 @@ class Process(QObject): Called via wait_for. """ + __tracebackhide__ = True message = kwargs.get('message', None) if message is not None: elided = quteutils.elide(repr(message), 50)