Files
deb-python-falcon/tox.ini
kgriffs 1e0df4d5f4 test: Enable coveralls (this will break py33 momentarily)
This patch turns on 100% coverage across all environments, and posts those
results to Coveralls. Python 3.3 doesn't currently achieve 100% coverage;
that will be fixed shortly.
2013-04-26 15:36:38 -04:00

13 lines
285 B
INI

[tox]
envlist = py26,py27,py33,pypy,flake8
[testenv]
deps = -r{toxinidir}/tools/test-requires
commands = nosetests {posargs}
[testenv:flake8]
commands = flake8 \
--max-complexity=12 \
--exclude=.venv,.tox,dist,doc,./falcon/bench/nuts \
--ignore=F403