django-admin-interface/tox.ini

61 lines
1.5 KiB
INI

[tox]
envlist =
py38-{dj30,dj31,dj32,dj40,dj41,dj42}-{sqlite,postgres},
py39-{dj30,dj31,dj32,dj40,dj41,dj42}-{sqlite,postgres},
py310-{dj32,dj40,dj41,dj42}-{sqlite,postgres},
py311-{dj41,dj42}-{sqlite,postgres},
py312-{dj42}-{sqlite,postgres},
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
[testenv]
passenv = CI,GITHUB_WORKFLOW
setenv =
sqlite: DATABASE_ENGINE=sqlite
# mysql: DATABASE_ENGINE=mysql
postgres: DATABASE_ENGINE=postgres
deps =
dj30: Django == 3.0.*
dj31: Django == 3.1.*
dj32: Django == 3.2.*
dj40: Django == 4.0.*
dj41: Django == 4.1.*
dj42: Django == 4.2.*
-r requirements.txt
-r requirements-test.txt
commands =
pre-commit run -a
coverage run --append --source=admin_interface runtests.py
coverage report --show-missing --ignore-errors
[testenv:migrations]
setenv =
DJANGO_SETTINGS_MODULE=tests.settings
DATABASE_ENGINE=sqlite
deps =
-r requirements.txt
commands =
python -m django makemigrations --check
[testenv:translations]
setenv =
DJANGO_SETTINGS_MODULE=tests.settings
DATABASE_ENGINE=sqlite
deps =
-r requirements.txt
allowlist_externals = git
commands =
python -m django makemessages --ignore ".tox" --ignore "venv" --all --add-location "file" --extension "html,py"
python -m django compilemessages --ignore ".tox" --ignore "venv"
git diff admin_interface/locale/
git diff-index --quiet HEAD admin_interface/locale/