python-benedict/tox.ini

23 lines
405 B
INI

[tox]
envlist =
py{38,39,310,311,312},
[testenv]
basepython =
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
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