Skip to content

Commit bd1c63e

Browse files
committed
Add a autouse fixture as workaround
1 parent 568b38d commit bd1c63e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/conftest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,12 @@ def qapp(qapp):
133133
return qapp
134134

135135

136+
@pytest.fixture(scope='function', autouse=True)
137+
def bug_workaround():
138+
# WORKAROUND for https://github.com/pytest-dev/pytest/issues/1832
139+
pass
140+
141+
136142
def pytest_addoption(parser):
137143
parser.addoption('--qute-delay', action='store', default=0, type=int,
138144
help="Delay between qutebrowser commands.")

0 commit comments

Comments
 (0)