stacktach-quince/tox.ini

20 lines
342 B
INI

[tox]
envlist = py26,py27,pep8
[testenv]
deps =
coverage
nose
mock
commands = nosetests -d -v --with-coverage --cover-inclusive --cover-package quince []
[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