15 lines
292 B
INI
15 lines
292 B
INI
[flake8]
|
|
exclude = .git, app/static, app/templates, tox.ini
|
|
|
|
[tox]
|
|
#envlist = py25,py26,py27
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
commands=
|
|
coverage run --source app/api,app/tools manage.py -t runtests
|
|
coverage report -m
|
|
coverage xml
|
|
coverage html
|
|
deps=-r{toxinidir}/requirements/test.txt
|