mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-16 21:30:24 +00:00
* Update GitHub Actions configuration to match latest tox-gh-actions README. * Add gh-actions configuration to tox.ini.
23 lines
423 B
INI
23 lines
423 B
INI
# -- FILE: tox.ini
|
|
[tox]
|
|
envlist =
|
|
py{37,38,39,310,311}-django32
|
|
py{38,39,310}-django40
|
|
py{38,39,310,311}-django41
|
|
|
|
[gh-actions]
|
|
python =
|
|
3.7: py37
|
|
3.8: py38
|
|
3.9: py39
|
|
3.10: py310
|
|
3.11: py311
|
|
|
|
[testenv]
|
|
commands =
|
|
coverage run --branch --source=notifications manage.py test
|
|
deps =
|
|
coverage
|
|
django32: Django>=3.2,<4.0
|
|
django40: Django>=4.0,<4.1
|
|
django41: Django>=4.1,<4.2
|