summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 5149f3789ab6a593080430db37db25be26c86948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tox]
envlist =
    py3{12,11,10,9,8,7}
    pypy3{9,8,7}
    docs
    lint
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}