1
0
Fork 0
operator-repo/tox.ini

12 lines
385 B
INI
Raw Normal View History

2023-08-03 08:52:14 +00:00
[tox]
2023-08-18 10:44:43 +00:00
envlist = py{39,310,311,py39}
2023-08-03 08:52:14 +00:00
isolated_build = True ; This is required for a pyproject.toml based project.
[testenv]
groups = ; Dependency groups in pyproject.toml
dev
commands =
pytest --cov-report term-missing --cov-fail-under=100 --cov=operator_repo -v tests/
2023-08-18 16:48:38 +00:00
pylint --disable=missing-module-docstring,missing-function-docstring src
2023-08-18 10:44:43 +00:00
mypy --strict src tests