stacktach-klugman/tox.ini

20 lines
343 B
INI

[tox]
envlist = py26,py27,pep8
[testenv]
deps =
coverage
nose
mock
commands = nosetests -d -v --with-coverage --cover-inclusive --cover-package klugman []
[testenv:pep8]
commands =
flake8
[flake8]
ignore =
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,*db/__init__.py,*db/migrations/versions/*_.py
show-source = True