django-authority/tox.ini

40 lines
622 B
INI
Raw Permalink Normal View History

2015-11-10 14:37:24 +00:00
[tox]
2016-05-11 12:49:30 +00:00
skipsdist = True
usedevelop = True
minversion = 1.8
2015-11-10 20:45:10 +00:00
envlist =
py27-dj111
py37-dj{111,22}
{py36,py37,py38}-dj{30,31}
py37-check
2015-11-10 14:37:24 +00:00
[testenv]
2016-05-11 12:49:30 +00:00
usedevelop = true
commands =
2018-01-28 13:35:33 +00:00
coverage run -a example/manage.py test authority exampleapp
coverage report
2020-11-26 08:29:44 +00:00
coverage xml
2015-11-10 14:37:24 +00:00
deps =
2018-01-28 13:31:44 +00:00
coverage
2020-01-24 10:45:48 +00:00
dj111: Django>=1.11,<2.0
dj22: Django>=2.2,<2.3
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
[testenv:py37-check]
deps =
twine
wheel
commands =
python setup.py sdist bdist_wheel
twine check dist/*
2020-11-26 08:28:20 +00:00
[gh-actions]
python =
2.7: py27
3.6: py36
2020-11-26 08:28:20 +00:00
3.7: py37
3.8: py38