2016-02-13 19:56:32 -05:00
|
|
|
[tox]
|
2022-01-11 12:00:53 +01:00
|
|
|
envlist = py39, lint, pylint, typing, cov
|
2016-02-13 19:56:32 -05:00
|
|
|
skip_missing_interpreters = True
|
2020-09-30 17:07:59 +02:00
|
|
|
ignore_basepython_conflict = True
|
2016-02-13 19:56:32 -05:00
|
|
|
|
|
|
|
[testenv]
|
2019-03-04 12:36:50 +01:00
|
|
|
basepython = {env:PYTHON3_PATH:python3}
|
2021-02-17 00:26:41 +02:00
|
|
|
# pip version duplicated in homeassistant/package_constraints.txt
|
|
|
|
pip_version = pip>=8.0.3,<20.3
|
2018-08-06 01:51:37 -07:00
|
|
|
commands =
|
2021-11-18 13:23:25 +08:00
|
|
|
{envpython} -X dev -m pytest --timeout=9 --durations=10 -n auto --dist=loadfile -qq -o console_output_style=count -p no:sugar {posargs}
|
2018-09-25 20:47:51 +02:00
|
|
|
{toxinidir}/script/check_dirty
|
2018-08-06 01:51:37 -07:00
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements_test_all.txt
|
|
|
|
|
|
|
|
[testenv:cov]
|
2016-02-13 19:56:32 -05:00
|
|
|
commands =
|
2021-11-18 13:23:25 +08:00
|
|
|
{envpython} -X dev -m pytest --timeout=9 --durations=10 -n auto --dist=loadfile -qq -o console_output_style=count -p no:sugar --cov --cov-report= {posargs}
|
2018-09-25 20:47:51 +02:00
|
|
|
{toxinidir}/script/check_dirty
|
2016-02-13 19:56:32 -05:00
|
|
|
deps =
|
2017-05-06 22:37:31 -07:00
|
|
|
-r{toxinidir}/requirements_test_all.txt
|
2016-02-13 19:56:32 -05:00
|
|
|
|
2017-11-19 17:39:24 -08:00
|
|
|
[testenv:pylint]
|
2020-08-27 17:57:58 +03:00
|
|
|
skip_install = True
|
2016-02-15 10:00:46 +00:00
|
|
|
ignore_errors = True
|
2017-05-06 22:37:31 -07:00
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements_all.txt
|
|
|
|
-r{toxinidir}/requirements_test.txt
|
2016-02-13 19:56:32 -05:00
|
|
|
commands =
|
2019-11-04 09:12:15 +02:00
|
|
|
pylint {env:PYLINT_ARGS:} {posargs} homeassistant
|
2016-02-13 19:56:32 -05:00
|
|
|
|
2017-11-19 17:39:24 -08:00
|
|
|
[testenv:lint]
|
2016-02-13 19:56:32 -05:00
|
|
|
deps =
|
2017-11-19 17:39:24 -08:00
|
|
|
-r{toxinidir}/requirements_test.txt
|
2016-02-13 19:56:32 -05:00
|
|
|
commands =
|
2019-04-24 21:30:46 -07:00
|
|
|
python -m script.gen_requirements_all validate
|
2020-04-19 18:43:49 +03:00
|
|
|
python -m script.hassfest --action validate
|
2020-01-31 17:33:00 +01:00
|
|
|
pre-commit run codespell {posargs: --all-files}
|
2019-10-18 22:20:27 +03:00
|
|
|
pre-commit run flake8 {posargs: --all-files}
|
2019-11-18 10:10:15 +02:00
|
|
|
pre-commit run bandit {posargs: --all-files}
|
2016-07-21 00:38:52 -05:00
|
|
|
|
|
|
|
[testenv:typing]
|
2016-07-21 23:54:25 -07:00
|
|
|
deps =
|
2021-03-30 16:18:29 +01:00
|
|
|
-r{toxinidir}/requirements_test_all.txt
|
2016-07-21 00:38:52 -05:00
|
|
|
commands =
|
2021-03-30 16:18:29 +01:00
|
|
|
mypy homeassistant
|