ha-supervisor/tox.ini

25 lines
443 B
INI
Raw Permalink Normal View History

2017-03-27 13:49:35 +02:00
[tox]
envlist = lint, tests, ruff
2017-03-27 13:49:35 +02:00
[testenv]
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements_tests.txt
2017-03-27 13:49:35 +02:00
[testenv:lint]
basepython = python3
ignore_errors = True
commands =
ruff check --fix supervisor tests
2020-05-18 10:06:07 +02:00
pylint --rcfile pylintrc supervisor tests
[testenv:tests]
basepython = python3
commands =
pytest --timeout=10 tests
[testenv:ruff]
basepython = python3
commands =
ruff format supervisor tests