parental-control/tox.ini
2024-11-19 20:29:33 +01:00

18 lines
406 B
INI

[coverage:run]
branch = True
[tox]
envlist = pylint, pytest, black
[testenv:pylint]
deps = pylint
commands = pylint parental_control tests {posargs}
[testenv:pytest]
deps = pytest-cov
commands = pytest tests -vv --cov parental_control --cov-report term --cov-report xml --cov-fail-under 100 {posargs}
[testenv:black]
deps = black
commands = black -l 100 --check --diff parental_control tests {posargs}