mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-03 20:20:05 -06:00
* 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`
20 lines
265 B
INI
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
|