mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
37 lines
627 B
INI
37 lines
627 B
INI
[tox]
|
|
envlist =
|
|
qa
|
|
py{36,37,38,py3}-django{22,30,31,master}
|
|
|
|
[travis]
|
|
python =
|
|
3.6: py36
|
|
3.7: py37
|
|
3.8: py38
|
|
pypy3: pypy3
|
|
|
|
[travis:env]
|
|
DJANGO =
|
|
2.2: django22
|
|
3.0: django30
|
|
3.1: django31
|
|
master: djangomaster
|
|
|
|
[testenv]
|
|
deps =
|
|
-r requirements.txt
|
|
django22: django>=2.2,<2.3
|
|
django30: django>=3.0,<3.1
|
|
django31: django>=3.1,<3.2
|
|
djangomaster: https://github.com/django/django/archive/master.tar.gz
|
|
usedevelop = True
|
|
commands =
|
|
pytest
|
|
setenv =
|
|
PYTHONDONTWRITEBYTECODE=1
|
|
|
|
[testenv:qa]
|
|
commands =
|
|
mypy axes
|
|
prospector
|
|
black -t py36 --check --diff axes
|