mirror of
https://gitee.com/openharmony/third_party_jinja2
synced 2024-11-23 07:10:31 +00:00
9232421ee2
Signed-off-by: xuezhou_yan <yangang20@huawei.com>
28 lines
553 B
INI
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
|