Files
deb-python-wsgi-intercept/tox.ini
Chris Dent d197a65ca6 Some cleanups to tox.ini
* Don't usedevelop
* short tracebacks on pytest
* only pep8 in wsgi_intercept
2016-09-23 00:30:22 +01:00

26 lines
465 B
INI

[tox]
minversion = 1.6
skipsdist = True
envlist = py27,py33,py34,py35,pypy,pep8,docs
[testenv]
deps = .[testing]
commands = py.test --tb=short wsgi_intercept/tests
passenv = WSGI_INTERCEPT_*
[testenv:pep8]
deps = flake8
commands =
flake8 wsgi_intercept
[testenv:docs]
deps = .[docs,testing]
commands =
python setup.py build_sphinx
whitelist_externals =
rm
[flake8]
exclude=.venv,.git,.tox,dist,*egg,*.egg-info,build,examples,docs
show-source = True