-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtox.ini
58 lines (48 loc) · 1.1 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
# For more information about tox, see https://tox.readthedocs.io/en/latest/
[tox]
envlist = {py37,py38,py39,py310,pypy3}-pytest{71,70,62,61,60,54,53,52,51,50}
[testenv]
deps =
pytest71: pytest~=7.1.0
pytest70: pytest~=7.0.0
pytest61: pytest~=6.1.0
pytest60: pytest~=6.0.0
pytest54: pytest~=5.4.0
pytest53: pytest~=5.3.0
pytest52: pytest~=5.2.0
pytest51: pytest~=5.1.0
pytest50: pytest~=5.0.0
dictdiffer
commands = py.test --litf --litf-output-file=litf/{envname}.litf -vv {posargs:tests}
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
pypy-3.7: pypy3
# Python 3.10 requires at least Pytest 7.0.0+
[testenv:py310-pytest50]
deps =
commands = echo "Skip"
[testenv:py310-pytest51]
deps =
commands = echo "Skip"
[testenv:py310-pytest52]
deps =
commands = echo "Skip"
[testenv:py310-pytest53]
deps =
commands = echo "Skip"
[testenv:py310-pytest54]
deps =
commands = echo "Skip"
[testenv:py310-pytest60]
deps =
commands = echo "Skip"
[testenv:py310-pytest61]
deps =
commands = echo "Skip"
[testenv:py310-pytest62]
deps =
commands = echo "Skip"