summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 75f993343a4890c4df3f1ecf2fc0bd61a1c48d9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[tox]
envlist =
    py3{12,11,10,9,8,7}
    pypy3{9,8,7}
    docs
    lint
    typing
skip_missing_interpreters = true

[testenv]
deps = -r requirements/tests.txt
commands = pytest -v --tb=short --basetemp={envtmpdir} {posargs:tests}

[testenv:docs]
deps = -r requirements/docs.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html

[testenv:lint]
skip_install = true
deps =
    pre-commit>=2.20
commands =
    pre-commit run --all-files --show-diff-on-failure {tty:--color=always} {posargs}

[testenv:typing]
deps = -r requirements/typing.txt
commands = mypy