summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/quteprocess.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-07-29 10:33:39 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-07-29 10:33:39 +0200
commit262b38430b7cb65ccd01d2dbbfa9ce4ec5ef4cb9 (patch)
tree33ad256f40fcc64e8da11e0340d6b64e893fa9b4 /tests/end2end/fixtures/quteprocess.py
parent1c2692168694cfcf0b53741788fa882d4b39320c (diff)
downloadqutebrowser-262b38430b7cb65ccd01d2dbbfa9ce4ec5ef4cb9.tar.gz
qutebrowser-262b38430b7cb65ccd01d2dbbfa9ce4ec5ef4cb9.zip
tests: Set pytrace=False
Diffstat (limited to 'tests/end2end/fixtures/quteprocess.py')
-rw-r--r--tests/end2end/fixtures/quteprocess.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index f21b308eb..5fb095583 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -683,9 +683,7 @@ class QuteProc(testprocess.Process):
if bad_msgs:
text = 'Logged unexpected errors:\n\n' + '\n'.join(
str(e) for e in bad_msgs)
- # We'd like to use pytrace=False here but don't as a WORKAROUND
- # for https://github.com/pytest-dev/pytest/issues/1316
- pytest.fail(text)
+ pytest.fail(text, pytrace=False)
else:
self._maybe_skip()
finally: