Merge pull request #25 from hackebrot/markers

Markers
This commit is contained in:
Florian Bruhin 2015-04-21 22:41:57 -07:00
commit 09c77cfa83

View File

@ -26,7 +26,7 @@ deps =
# on Ubuntu Trusty.
commands =
{envpython} scripts/link_pyqt.py --tox {envdir}
{envpython} -m py.test {posargs}
{envpython} -m py.test --strict {posargs}
[testenv:coverage]
deps =
@ -36,7 +36,7 @@ deps =
cov-core==1.15.0
commands =
{[testenv:mkvenv]commands}
{envpython} -m py.test --cov qutebrowser --cov-report term --cov-report html {posargs}
{envpython} -m py.test --strict --cov qutebrowser --cov-report term --cov-report html {posargs}
[testenv:misc]
commands =
@ -109,3 +109,5 @@ commands =
[pytest]
norecursedirs = .tox .venv
markers =
gui: Tests using the GUI (e.g. spawning widgets)