mirror of
https://github.com/jazzband/django-authority.git
synced 2026-04-21 15:24:44 +00:00
27 lines
440 B
INI
27 lines
440 B
INI
[tox]
|
|
skipsdist = True
|
|
usedevelop = True
|
|
minversion = 1.8
|
|
envlist =
|
|
py27-dj111
|
|
py37-dj{111,22}
|
|
py37-check
|
|
|
|
[testenv]
|
|
usedevelop = true
|
|
commands =
|
|
coverage run -a example/manage.py test authority exampleapp
|
|
coverage report
|
|
deps =
|
|
coverage
|
|
dj111: Django>=1.11,<2.0
|
|
dj22: Django>=2.2,<2.3
|
|
|
|
|
|
[testenv:py37-check]
|
|
deps =
|
|
twine
|
|
wheel
|
|
commands =
|
|
python setup.py sdist bdist_wheel
|
|
twine check dist/*
|