diff --git a/.travis.yml b/.travis.yml index e2783aa74..bfc656443 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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' diff --git a/tox.ini b/tox.ini index be7e19cb6..b3f2b8ff4 100644 --- a/tox.ini +++ b/tox.ini @@ -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]