22 lines
385 B
INI
22 lines
385 B
INI
[tox]
|
|
envlist =
|
|
py{310,311,312,313},
|
|
|
|
[testenv]
|
|
basepython =
|
|
py310: python3.10
|
|
py311: python3.11
|
|
py312: python3.12
|
|
py313: python3.13
|
|
|
|
passenv = CI,GITHUB_WORKFLOW
|
|
|
|
deps =
|
|
-r requirements.txt
|
|
-r requirements-test.txt
|
|
|
|
commands =
|
|
pre-commit run -a
|
|
coverage run --append --source=benedict -m unittest
|
|
coverage report --show-missing --ignore-errors
|