mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
26 lines
412 B
INI
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
|