PythonRMV/tox.ini

23 lines
404 B
INI
Raw Normal View History

2023-11-19 23:38:51 +02:00
[tox]
minversion = 3.8.0
envlist = py37, py38, py39, py310, py311
isolated_build = true
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps =
-r{toxinidir}/requirements/_.txt
-r{toxinidir}/requirements/dev.txt
commands =
2023-11-20 00:05:48 +02:00
pytest --basetemp={envtmpdir} --cov=pyrmv --cov-report term-missing
2023-11-19 23:38:51 +02:00