summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: e13146ed17ca5174bf4b3286797769bea99a707a (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
28
29
30
31
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py36, py38, py310
skip_missing_interpreters = true

[base]
changedir = test/unittests
deps =
    pytest
    pytest-cov
commands = py.test -vv --cov=crmsh --cov-config .coveragerc --cov-report term --cov-report html {posargs}

[testenv]
changedir = {[base]changedir}
deps = {[base]deps}
commands = {[base]commands}

[testenv:3.6]
changedir = {[base]changedir}
deps = {[base]deps}
commands = {[base]commands}

[testenv:3.8]
changedir = {[base]changedir}
deps = {[base]deps}
commands = {[base]commands}

[testenv:3.10]
changedir = {[base]changedir}
deps = {[base]deps}
commands = {[base]commands}