Files
flask-debugtoolbar/tox.ini
Jeff Widman d713732807 Cleanup tox/travis
* Switch to python 3.8 in Travis. I tried to add 3.8 while keeping 3.7
and 3.6, but ran into issues with Travis config, so instead just bumped
straight to 3.8. Long term I'd like to explore moving to Azure
Pipelines, but don't have the time to figure that out just yet.
* `flake8` was renamed to `pycodestyle`
* `py.test` was deprecated in favor of `pytest`
2020-02-18 00:42:39 -08:00

20 lines
265 B
INI

[tox]
envlist = py27,py36,py37,py38,stylecheck
[testenv]
deps =
pytest
Flask-SQLAlchemy
Pygments
commands =
pytest
[testenv:stylecheck]
deps =
pycodestyle
commands =
pycodestyle flask_debugtoolbar test
[pycodestyle]
max-line-length = 100