Bug 1858509 add thread-safety annotations around MediaSourceDemuxer::mMonitor r=alwu
[gecko.git] / third_party / python / MarkupSafe / tox.ini
blobde68730f28d9d0633ae9f4cb4a89025130abaa7b
1 [tox]
2 envlist =
3 py{39,38,37,36,py3}
4 style
5 typing
6 docs
7 skip_missing_interpreters = true
9 [testenv]
10 deps = -r requirements/tests.txt
11 commands = pytest -v --tb=short --basetemp={envtmpdir} {posargs}
13 [testenv:style]
14 deps = pre-commit
15 skip_install = true
16 commands = pre-commit run --all-files --show-diff-on-failure
18 [testenv:typing]
19 deps = -r requirements/typing.txt
20 commands = mypy
22 [testenv:docs]
23 deps = -r requirements/docs.txt
24 commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html