From b0671ef530c564ad2f56a33c296f88d49bac264f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 7 Oct 2015 07:01:03 +0200 Subject: [PATCH] tox: Don't add --faulthandler-timeout to pytest. This breaks the tests on Windows currently: https://github.com/pytest-dev/pytest-faulthandler/issues/8 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 18a1b9516..85d21489b 100644 --- a/tox.ini +++ b/tox.ini @@ -31,7 +31,7 @@ deps = Werkzeug==0.10.4 commands = {envpython} scripts/link_pyqt.py --tox {envdir} - {envpython} -m py.test --strict -rfEsw --cov qutebrowser --cov-report xml --cov-report=html --cov-report= --faulthandler-timeout=20 {posargs:tests} + {envpython} -m py.test --strict -rfEsw --cov qutebrowser --cov-report xml --cov-report=html --cov-report= {posargs:tests} {envpython} scripts/dev/check_coverage.py {posargs} [testenv:mkvenv]