1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00
django-mailbox/tox.ini

49 lines
1,005 B
INI
Raw Permalink Normal View History

2016-05-14 22:42:55 -07:00
[tox]
2018-03-09 19:09:06 +01:00
# sort by django version, next by python version
envlist=
flake8
py{310,311,312}-django50
py{38,39,310,311}-django42
py{38,39,310,311}-django41
py{38,39,310}-django40
py{38,39,310}-django32
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
2016-05-14 22:42:55 -07:00
[testenv]
passenv=
EMAIL_IMAP_SERVER
EMAIL_ACCOUNT
EMAIL_PASSWORD
EMAIL_SMTP_SERVER
2016-05-14 23:32:12 -07:00
deps=
django50: Django==5.0,<5.1
django42: Django>=4.2,<5.0
django41: Django>=4.1,<4.2
django40: Django>=4.0,<4.1
django32: Django>=3.2,<4.0
2016-05-14 23:32:12 -07:00
-r{toxinidir}/test_requirements.txt
sitepackages=False
2016-05-14 22:42:55 -07:00
commands=
python {toxinidir}/manage.py makemigrations --check --dry-run
python -Wd manage.py test -v2 {posargs}
2017-05-10 00:07:05 +02:00
[testenv:docs]
deps=
sphinx
-r{toxinidir}/rtd_requirements.txt
.
commands=make html clean SPHINXOPTS="-W --keep-going"
changedir={toxinidir}/docs
allowlist_externals=make
2017-05-10 00:07:05 +02:00
[testenv:flake8]
deps=flake8
commands=flake8 django_mailbox