1
0
Fork 0
operator-repo/tox.ini

11 lines
287 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=operator_repo -v tests/
2023-08-18 10:44:43 +00:00
mypy --strict src tests