summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 852818787ff417c626502984bf08977edc7769a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[tox]
envlist = py{3.6,3.7,3.8,3.9}

[testenv]
basepython =
    py3.6: python3.6
    py3.7: python3.7
    py3.8: python3.8
    py3.9: python3.9
commands =
    {envpython} --version
    pytest
deps =
    pytest
    pytest-cov