2016-02-14 00:56:32 +00:00
|
|
|
[tox]
|
2019-07-31 19:21:15 +00:00
|
|
|
envlist = py36, py37, py38, lint, pylint, typing, cov
|
2016-02-14 00:56:32 +00:00
|
|
|
skip_missing_interpreters = True
|
|
|
|
|
|
|
|
[testenv]
|
2019-03-04 11:36:50 +00:00
|
|
|
basepython = {env:PYTHON3_PATH:python3}
|
2018-08-06 08:51:37 +00:00
|
|
|
commands =
|
2019-11-13 07:50:35 +00:00
|
|
|
pytest --timeout=9 --durations=10 -n auto --dist=loadfile -qq -o console_output_style=count -p no:sugar {posargs}
|
2018-09-25 18:47:51 +00:00
|
|
|
{toxinidir}/script/check_dirty
|
2018-08-06 08:51:37 +00:00
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements_test_all.txt
|
|
|
|
-c{toxinidir}/homeassistant/package_constraints.txt
|
2019-11-13 07:50:35 +00:00
|
|
|
pytest-xdist
|
2018-08-06 08:51:37 +00:00
|
|
|
|
|
|
|
[testenv:cov]
|
2016-02-14 00:56:32 +00:00
|
|
|
commands =
|
2019-11-13 07:50:35 +00:00
|
|
|
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 18:47:51 +00:00
|
|
|
{toxinidir}/script/check_dirty
|
2016-02-14 00:56:32 +00:00
|
|
|
deps =
|
2017-05-07 05:37:31 +00:00
|
|
|
-r{toxinidir}/requirements_test_all.txt
|
2017-08-05 06:06:10 +00:00
|
|
|
-c{toxinidir}/homeassistant/package_constraints.txt
|
2019-11-13 07:50:35 +00:00
|
|
|
pytest-xdist
|
2016-02-14 00:56:32 +00:00
|
|
|
|
2017-11-20 01:39:24 +00:00
|
|
|
[testenv:pylint]
|
2016-02-15 10:00:46 +00:00
|
|
|
ignore_errors = True
|
2017-05-07 05:37:31 +00:00
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements_all.txt
|
|
|
|
-r{toxinidir}/requirements_test.txt
|
2017-08-05 06:06:10 +00:00
|
|
|
-c{toxinidir}/homeassistant/package_constraints.txt
|
2016-02-14 00:56:32 +00:00
|
|
|
commands =
|
2019-11-04 07:12:15 +00:00
|
|
|
pylint {env:PYLINT_ARGS:} {posargs} homeassistant
|
2016-02-14 00:56:32 +00:00
|
|
|
|
2017-11-20 01:39:24 +00:00
|
|
|
[testenv:lint]
|
2016-02-14 00:56:32 +00:00
|
|
|
deps =
|
2017-11-20 01:39:24 +00:00
|
|
|
-r{toxinidir}/requirements_test.txt
|
2016-02-14 00:56:32 +00:00
|
|
|
commands =
|
2019-04-25 04:30:46 +00:00
|
|
|
python -m script.gen_requirements_all validate
|
2020-04-19 15:43:49 +00:00
|
|
|
python -m script.hassfest --action validate
|
2020-01-31 16:33:00 +00:00
|
|
|
pre-commit run codespell {posargs: --all-files}
|
2019-10-18 19:20:27 +00:00
|
|
|
pre-commit run flake8 {posargs: --all-files}
|
2019-11-18 08:10:15 +00:00
|
|
|
pre-commit run bandit {posargs: --all-files}
|
2016-07-21 05:38:52 +00:00
|
|
|
|
|
|
|
[testenv:typing]
|
2016-07-22 06:54:25 +00:00
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements_test.txt
|
2019-03-04 11:36:50 +00:00
|
|
|
-c{toxinidir}/homeassistant/package_constraints.txt
|
2016-07-21 05:38:52 +00:00
|
|
|
commands =
|
2020-02-01 15:12:46 +00:00
|
|
|
pre-commit run mypy {posargs: --all-files}
|