Use pytest-faulthandler on all platforms.

This commit is contained in:
Florian Bruhin 2015-11-13 06:23:31 +01:00
parent 55b83409d9
commit 3695e05691
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ install:
- python scripts/dev/ci_install.py
script:
- tox -e $TESTENV -- -p no:sugar --faulthandler-timeout=70 -v --cov-report term tests
- tox -e $TESTENV -- -p no:sugar -v --cov-report term tests
after_success:
- '[[ $TESTENV == py34 || $TESTENV == py35 ]] && codecov -e TESTENV -X gcov'

View File

@ -44,7 +44,7 @@ deps =
xvfbwrapper==0.2.5
commands =
{envpython} scripts/link_pyqt.py --tox {envdir}
{envpython} -m py.test --strict -rfEsw --cov --cov-report xml --cov-report=html --cov-report= {posargs:tests}
{envpython} -m py.test --strict -rfEsw --faulthandler-timeout=70 --cov --cov-report xml --cov-report=html --cov-report= {posargs:tests}
{envpython} scripts/dev/check_coverage.py {posargs}
[testenv:mkvenv]