-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathtox.ini
64 lines (50 loc) · 1.14 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
[tox]
envlist = lint,manifest,typing,py37,py38,py39,py310,py311,coverage-report
[testenv]
setenv =
# Prevent random setuptools/pip breakages like
# https://github.com/pypa/setuptools/issues/1042 from breaking our builds.
VIRTUALENV_NO_DOWNLOAD=1
PYTHONIOENCODING=UTF-8
# Disable to load kernel modules during unit tests
W1THERMSENSOR_NO_KERNEL_MODULE=1
extras = {env:TOX_AP_TEST_EXTRAS:tests}
commands =
coverage run -p -m pytest {posargs}
[testenv:integration]
commands = make docker-deb
whitelist_externals =
make
[testenv:coverage-report]
basepython = python3.11
skip_install = true
deps = coverage[toml]>=5.0.2
commands =
coverage combine
coverage report
coverage xml
[testenv:lint]
basepython = python3.11
skip_install = true
deps =
black
isort
flake8
commands =
black src/ tests/
isort -rc --atomic .
flake8 src/ tests/
[testenv:typing]
basepython = python3.11
deps = mypy
commands =
mypy src/ tests/
[testenv:manifest]
basepython = python3.11
deps = check-manifest
skip_install = true
commands = check-manifest
[testenv:news]
basepython = python3.11
deps = towncrier
commands = towncrier