FOSSDB/tox.ini
2023-04-22 13:47:59 +03:00

26 lines
412 B
INI

[tox]
minversion = 3.8.0
envlist = django, flake8, mypy
isolated_build = true
[gh-actions]
python =
3.10: django, mypy, flake8
[testenv:django]
basepython = python3.10
deps = django
commands = python manage.py test
[testenv:flake8]
basepython = python3.10
deps = flake8
commands = flake8 FOSSDB
[testenv:mypy]
basepython = python3.10
deps =
-r{toxinidir}/requirements_dev.txt
commands = mypy FOSSDB