diff options
author | Marc Abramowitz <marc@marc-abramowitz.com> | 2014-04-27 17:42:34 -0700 |
---|---|---|
committer | Marc Abramowitz <marc@marc-abramowitz.com> | 2014-04-27 17:42:34 -0700 |
commit | c6df1a6a4175078fb4051dbe7f2d11af468b6b4b (patch) | |
tree | e41dddaa9eec74333675f6d0f0fc972f57ab26cf /tox.ini | |
parent | 7fbfd9cba01d75655bf79256c545b84c6b6a3c2b (diff) | |
download | tox-c6df1a6a4175078fb4051dbe7f2d11af468b6b4b.tar.gz |
tox.ini: Add "flakes" target
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist=py27,py26,py34,py33,py32,pypy +envlist=py27,py26,py34,py33,py32,pypy,flakes [testenv:X] commands=echo {posargs} @@ -18,6 +18,10 @@ commands= --junitxml={envlogdir}/junit-{envname}.xml \ check_sphinx.py {posargs} +[testenv:flakes] +deps = pytest-flakes>=0.2 +commands = py.test --flakes -m flakes tox tests + [testenv:py25] setenv= PIP_INSECURE=1 |