mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-05-06 16:40:45 -05:00
f959951185
* Remove the branch constraint for pull request triggering * Use Python 3.12 for main tests * Use `ubuntu-20.04` for Python 3.6 since it's been removed in `ubuntu-latest` * Remove Python 2.7 since it's not supported by GitHub Actions anymore (https://github.com/actions/setup-python/issues/672) * Add the missing `setup-python` step * Merge the `pip install` commands
24 lines
317 B
INI
24 lines
317 B
INI
[tox]
|
|
envlist =
|
|
py27
|
|
py3{12,11,10,9,8,7,6}
|
|
stylecheck
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
Flask-SQLAlchemy
|
|
Pygments
|
|
commands =
|
|
pytest
|
|
|
|
[testenv:stylecheck]
|
|
deps =
|
|
pycodestyle
|
|
commands =
|
|
pycodestyle flask_debugtoolbar test
|
|
|
|
[pycodestyle]
|
|
max-line-length = 100
|