parental-control/tox.ini

18 lines
406 B
INI
Raw Permalink Normal View History

2023-09-09 10:41:07 +02:00
[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}