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.
13 lines
285 B
INI
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
|