django-constance/tox.ini

40 lines
928 B
INI
Raw Normal View History

2014-11-21 13:15:42 +00:00
[tox]
requires =
tox<4
2014-11-21 15:56:06 +00:00
envlist =
py{38,39,310,311,312}-dj{42}-{unittest,pytest}
py{310,311,312}-dj{50}-{unittest,pytest}
py{310,311,312}-dj{main}-{unittest,pytest}
2014-11-21 13:15:42 +00:00
[testenv]
deps =
redis
coverage
django-picklefield
dj42: django>=4.2,<4.3
dj50: django>=5.0,<5.1
dj51: django>=5.1,<5.2
djmain: https://github.com/django/django/archive/main.tar.gz
pytest: pytest
pytest: pytest-cov
pytest: pytest-django
usedevelop = True
ignore_outcome =
djmain: True
2014-11-21 13:15:42 +00:00
commands =
unittest: coverage run {envbindir}/django-admin test -v2
unittest: coverage report
unittest: coverage xml
pytest: pytest --cov=. --ignore=.tox --disable-pytest-warnings --cov-report=xml --cov-append {toxinidir}
2015-09-24 09:56:19 +00:00
setenv =
PYTHONDONTWRITEBYTECODE=1
DJANGO_SETTINGS_MODULE=tests.settings
[gh-actions]
python =
3.8: py38
3.9: py39
2021-10-21 18:56:14 +00:00
3.10: py310
3.11: py311
3.12: py312