-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
tox.ini
43 lines (37 loc) · 914 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
[tox]
envlist = py39, py310, py311, py312, py313, ruff, typing, lint, pylint
skip_missing_interpreters = True
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py310, ruff, typing, lint, pylint
3.12: py312
3.13: py313
[testenv]
setenv =
PYTHONPATH = {toxinidir}
commands =
pytest --cov xknxproject --cov-report= {posargs}
deps = -rrequirements_testing.txt
package = wheel
wheel_build_env = .pkg
[testenv:lint]
basepython = python3
commands =
pre-commit run codespell {posargs: --all-files}
pre-commit run check-json {posargs: --all-files}
pre-commit run trailing-whitespace {posargs: --all-files}
[testenv:pylint]
basepython = python3
commands =
pylint xknxproject
[testenv:ruff]
basepython = python3
commands =
ruff check {posargs:.}
ruff format {posargs:.}
[testenv:typing]
basepython = python3
commands =
pre-commit run mypy {posargs: --all-files}