forked from storpool/sp-variant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
124 lines (112 loc) · 2.16 KB
/
tox.ini
File metadata and controls
124 lines (112 loc) · 2.16 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# SPDX-FileCopyrightText: 2021 - 2024 StorPool <support@storpool.com>
# SPDX-License-Identifier: BSD-2-Clause
[tox]
minversion = 4.1
envlist =
ruff
format
mypy
reuse
docs
unit-tests-pytest-6
unit-tests-pytest-7
unit-tests-pytest-8
isolated_build = True
[defs]
pyfiles =
python/sp_build_repo \
python/sp_variant \
python/test_docker \
python/unit_tests
[testenv:ruff]
skip_install = True
tags =
check
quick
deps =
-r python/requirements/ruff.txt
commands =
ruff check -- {[defs]pyfiles}
[testenv:format]
skip_install = True
tags =
check
quick
deps =
-r python/requirements/ruff.txt
commands =
ruff check --config ruff-base.toml --select=D,I --diff -- {[defs]pyfiles}
ruff format --check --config ruff-base.toml --diff -- {[defs]pyfiles}
[testenv:reformat]
skip_install = True
tags =
format
manual
deps =
-r python/requirements/ruff.txt
commands =
ruff check --config ruff-base.toml --select=D,I --fix -- {[defs]pyfiles}
ruff format --config ruff-base.toml -- {[defs]pyfiles}
[testenv:mypy]
skip_install = True
tags =
check
deps =
-r python/requirements/test-mypy.txt
mypy >= 1.5, < 2
commands =
mypy -- {[defs]pyfiles}
[testenv:unit-tests-pytest-6]
tags =
tests
deps =
-r python/requirements/test-unit.txt
pytest >= 6, < 7
commands =
pytest {posargs} python/unit_tests
[testenv:unit-tests-pytest-7]
tags =
tests
deps =
-r python/requirements/test-unit.txt
pytest >= 7, < 8
commands =
pytest {posargs} python/unit_tests
[testenv:unit-tests-pytest-8]
tags =
tests
deps =
-r python/requirements/test-unit.txt
pytest >= 8, < 9
commands =
pytest {posargs} python/unit_tests
[testenv:pyupgrade]
skip_install = True
tags =
upgrade
manual
deps =
pyupgrade >= 3, < 4
allowlist_externals =
sh
commands =
sh -c 'pyupgrade --py38-plus python/sp_build_repo/*.py python/sp_variant/*.py python/test_docker/*.py python/unit_tests/*.py'
# This should only be run when the working tree is clean
[testenv:reuse]
skip_install = True
tags =
check
quick
deps =
reuse >= 2, < 3
commands =
reuse lint
[testenv:docs]
skip_install = True
tags =
docs
check
deps =
-r python/requirements/docs.txt
commands =
mkdocs build