mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-05 21:20:12 -06:00
Adds a "stylecheck" to the Tox build config to automatically run flake8 checks. Fixes existing flake8 issues.
20 lines
246 B
INI
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
|