Skip to content

Commit

Permalink
Add a autouse fixture as workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Compiler committed Aug 22, 2016
1 parent 568b38d commit bd1c63e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/conftest.py
Expand Up @@ -133,6 +133,12 @@ def qapp(qapp):
return qapp


@pytest.fixture(scope='function', autouse=True)
def bug_workaround():
# WORKAROUND for https://github.com/pytest-dev/pytest/issues/1832
pass


def pytest_addoption(parser):
parser.addoption('--qute-delay', action='store', default=0, type=int,
help="Delay between qutebrowser commands.")
Expand Down

0 comments on commit bd1c63e

Please sign in to comment.