django-notifications/tox.ini
YPCrumble 8b05c101a6
Update GitHub Actions configuration to match latest tox-gh-actions RE… (#354)
* Update GitHub Actions configuration to match latest tox-gh-actions README.

* Add gh-actions configuration to tox.ini.
2022-11-16 13:54:14 -05:00

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