summaryrefslogtreecommitdiff
path: root/tox.ini
blob: c36a664adfb3b17d1f6bcca4c0e011820111ff42 (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
[tox]
envlist =
    lint
    py36
    py37
    py38
    py39
    py310
skip_missing_interpreters =
    true

[testenv]
deps =
    .[test]
    pytest
commands =
    pytest {posargs}

[testenv:lint]
basepython =
    python3.10
deps =
    pre-commit
skip_install = true
commands =
    pre-commit run -a