-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
106 lines (94 loc) · 2.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[tox]
envlist =
# linters
pylint
ruff
# unit tests
py{37,38,39,310,311,312,313}
pypy3
[testenv]
commands =
{envpython} -m tests {posargs}
deps =
setenv =
PIP_DISABLE_PIP_VERSION_CHECK=1
PIP_NO_PYTHON_VERSION_WARNING=1
PYTHONDONTWRITEBYTECODE=1
TOX_INI_DIR={toxinidir}
usedevelop =
true
# ######################################################################
# unit testing for extract checks which require external tools
# ######################################################################
[testenv:extract-tests]
commands =
{envpython} -m tests --test-dir extract-tests {posargs}
deps =
{[testenv]deps}
setenv =
{[testenv]setenv}
passenv =
*
[testenv:{py27-,py34-,py35-,py36-,py37-,py38-,py39-,py310-,py311-,py312-,py313-}extract-tests]
commands =
{[testenv:extract-tests]commands}
deps =
{[testenv:extract-tests]deps}
setenv =
{[testenv:extract-tests]setenv}
passenv =
*
# ######################################################################
# tests non-editable installs, to ensure interpreters package correctly
# ######################################################################
[testenv:{py27-,py35-,py36-,py37-,py38-,py39-,py310-,py311-,py312-,py313-}release]
usedevelop =
false
# ######################################################################
# mainline testing
# ######################################################################
[testenv:py27-mainline]
commands =
{envpython} -m fetchdep {posargs}
deps =
{[testenv]deps}
-r{toxinidir}/requirements-test.txt
setenv =
{[testenv]setenv}
PYTHONUNBUFFERED=1
passenv =
*
[testenv:{py35-,py36-,py37-,py38-,py39-,py310-,py311-,py312-,py313-}mainline]
commands =
{envpython} -m fetchdep {posargs}
deps =
{[testenv]deps}
-r{toxinidir}/requirements-test.txt
setenv =
{[testenv]setenv}
PYTHONUNBUFFERED=1
passenv =
*
# ######################################################################
# linters
# ######################################################################
[testenv:pylint]
deps =
{[testenv]deps}
pylint: pylint==3.3.1
commands =
pylint \
fetchdep \
tests
[testenv:ruff]
deps =
{[testenv]deps}
ruff: ruff==0.7.4
setenv =
{[testenv]setenv}
RUFF_CACHE_DIR={toxworkdir}/.ruff_cache
commands =
ruff \
check \
fetchdep \
tests