python-werkzeug/tox.ini

28 lines
551 B
INI
Raw Normal View History

2023-03-14 14:48:50 +08:00
[tox]
envlist =
2024-05-07 15:43:41 +08:00
py3{12,11,10,9,8}
pypy310
2023-03-14 14:48:50 +08:00
style
typing
docs
skip_missing_interpreters = true
[testenv]
2024-05-07 15:43:41 +08:00
package = wheel
wheel_build_env = .pkg
2023-03-14 14:48:50 +08:00
deps = -r requirements/tests.txt
commands = pytest -v --tb=short --basetemp={envtmpdir} {posargs}
[testenv:style]
deps = pre-commit
skip_install = true
2024-05-07 15:43:41 +08:00
commands = pre-commit run --all-files
2023-03-14 14:48:50 +08:00
[testenv:typing]
deps = -r requirements/typing.txt
commands = mypy
[testenv:docs]
deps = -r requirements/docs.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html