python-benedict/tox.ini

22 lines
385 B
INI
Raw Normal View History

2019-05-17 11:13:15 +00:00
[tox]
envlist =
py{310,311,312,313},
2019-06-01 15:22:00 +00:00
2019-05-17 11:13:15 +00:00
[testenv]
2019-06-01 15:22:00 +00:00
basepython =
2021-10-19 15:22:06 +00:00
py310: python3.10
2022-11-24 12:15:19 +00:00
py311: python3.11
2023-10-31 19:37:23 +00:00
py312: python3.12
2024-10-12 10:44:47 +00:00
py313: python3.13
2019-06-01 15:22:00 +00:00
2022-12-11 22:45:21 +00:00
passenv = CI,GITHUB_WORKFLOW
2019-06-01 15:22:00 +00:00
2023-01-16 17:25:44 +00:00
deps =
-r requirements.txt
-r requirements-test.txt
2019-05-17 11:13:15 +00:00
commands =
2023-01-25 19:06:04 +00:00
pre-commit run -a
2023-10-31 19:37:23 +00:00
coverage run --append --source=benedict -m unittest
2023-01-16 17:25:44 +00:00
coverage report --show-missing --ignore-errors