20 lines
391 B
INI
20 lines
391 B
INI
[tox]
|
|
minversion = 3.10.0
|
|
envlist = py310, py311, py312, py313
|
|
isolated_build = true
|
|
|
|
[gh-actions]
|
|
python =
|
|
3.10: py310
|
|
3.11: py311
|
|
3.12: py312
|
|
3.13: py313
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}
|
|
deps =
|
|
-r{toxinidir}/requirements/_.txt
|
|
-r{toxinidir}/requirements/dev.txt
|
|
commands =
|
|
pytest --basetemp={envtmpdir} --cov=huepaper --cov-report term-missing |