-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tox.ini
38 lines (33 loc) · 766 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
[tox]
skipsdist = true
envlist = py310, py311, py312, lint, mypy
skip_missing_interpreters = True
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312, lint, mypy
[pytest]
asyncio_default_fixture_loop_scope=function
[testenv]
commands =
pytest -vvv --asyncio-mode=auto --timeout=30 --cov=custom_components/gasbuddy --cov-report=xml {posargs}
deps =
-rrequirements_test.txt
[testenv:lint]
basepython = python3
ignore_errors = True
commands =
black --check ./
flake8 custom_components/gasbuddy
pylint custom_components/gasbuddy
pydocstyle custom_components/gasbuddy tests
deps =
-rrequirements_test.txt
[testenv:mypy]
basepython = python3
ignore_errors = True
commands =
mypy custom_components/gasbuddy
deps =
-rrequirements_test.txt