Files
flask-debugtoolbar/tox.ini
T
Grey Li f959951185 Fix tox and GitHub actions settings (#217)
* 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
2023-11-16 14:41:30 -08:00

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