third_party_jinja2/tox.ini
xuezhou_yan 9232421ee2 issue:#I9SPO8 update jinja to 3.1.3
Signed-off-by: xuezhou_yan <yangang20@huawei.com>
2024-05-28 10:37:23 +08:00

28 lines
553 B
INI

[tox]
envlist =
py3{12,11,10,9,8,7}
pypy310
style
typing
docs
skip_missing_interpreters = true
[testenv]
package = wheel
wheel_build_env = .pkg
deps = -r requirements/tests.txt
commands = pytest -v --tb=short --basetemp={envtmpdir} {posargs}
[testenv:style]
deps = pre-commit
skip_install = true
commands = pre-commit run --all-files
[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