21 lines
417 B
INI
21 lines
417 B
INI
[tox]
|
|
minversion = 3.8.0
|
|
envlist = py38, py39, py310
|
|
isolated_build = true
|
|
|
|
[gh-actions]
|
|
python =
|
|
3.8: py38
|
|
3.9: py39
|
|
3.10: py310
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}
|
|
deps =
|
|
-r{toxinidir}/requirements_dev.txt
|
|
commands =
|
|
pytest --junitxml report.xml yoink/tests/test_basic.py
|
|
pytest --junitxml report.xml tests/test_web.py
|
|
pytest --junitxml report.xml tests/test_model_user.py
|