-
Notifications
You must be signed in to change notification settings - Fork 13
/
tox.ini
63 lines (53 loc) · 1.02 KB
/
tox.ini
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tox]
envlist =
tooltool_client-py38
tooltool_client-py39
tooltool_client-py310
tooltool_api-py311
tooltool_client-py311
tooltool_api-py312
tooltool_client-py312
skipsdist = true
[testenv]
deps =
tox
passenv =
CI
CI_*
CODECOV_TOKEN
HOME
[testenv:tooltool_client-py38]
changedir = {toxinidir}/client
commands =
tox -e py38
tox -e codecov
[testenv:tooltool_client-py39]
changedir = {toxinidir}/client
commands =
tox -e py39
tox -e codecov
[testenv:tooltool_client-py310]
changedir = {toxinidir}/client
commands =
tox -e py310
tox -e codecov
[testenv:tooltool_api-py311]
changedir = {toxinidir}/api
commands =
tox -e py311
tox -e codecov
[testenv:tooltool_client-py311]
changedir = {toxinidir}/client
commands =
tox -e py311
tox -e codecov
[testenv:tooltool_api-py312]
changedir = {toxinidir}/api
commands =
tox -e py312
tox -e codecov
[testenv:tooltool_client-py312]
changedir = {toxinidir}/client
commands =
tox -e py312
tox -e codecov