Files
flask-debugtoolbar/tox.ini
Matt Good 14cd912df7 Fix style errors and add to automated checks
Adds a "stylecheck" to the Tox build config to automatically run flake8 checks.
Fixes existing flake8 issues.
2015-04-17 14:23:58 -07:00

20 lines
246 B
INI

[tox]
envlist = py26,py27,py34,stylecheck
[testenv]
deps =
pytest
Flask-SQLAlchemy
Pygments
commands =
py.test
[testenv:stylecheck]
deps =
flake8
commands =
flake8 flask_debugtoolbar test
[flake8]
max-line-length = 100