-
Notifications
You must be signed in to change notification settings - Fork 25
/
tox.ini
45 lines (42 loc) · 902 Bytes
/
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
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
testenv=py{38,39,310,311,312}
[base]
deps =
cov-core
nose2[coverage-plugin]
commands =
python tier_tests.py {posargs}
[testenv:py38]
basepython = python3.8
deps =
suds
{[base]deps}
commands = {[base]commands}
[testenv:py39]
basepython = python3.9
deps =
suds
{[base]deps}
commands = {[base]commands}
[testenv:py310]
basepython = python3.10
deps =
suds
{[base]deps}
commands = {[base]commands}
[testenv:py311]
basepython = python3.11
deps =
suds
{[base]deps}
commands = {[base]commands}
[testenv:py312]
basepython = python3.12
deps =
suds
{[base]deps}
commands = {[base]commands}