forked from jazzband/django-two-factor-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
65 lines (59 loc) · 1.41 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tox]
; Minimum version of Tox
minversion = 1.8
envlist =
py{27,34,35,36,37}-dj111-{normal,yubikey,custom_user},
py{35,36,37}-dj21-{normal,yubikey,custom_user},
py{35,36,37}-dj22-{normal,yubikey,custom_user},
py{35,36,37}-djmaster-{normal,yubikey,custom_user},
flake8
skipsdist = True
[travis]
unignore_outcomes = True
[travis:env]
DJANGO =
1.11: dj111
2.1: dj21
2.2: dj22
master: djmaster
VARIANT =
normal: normal
yubikey: yubikey
custom_user: custom_user
[testenv]
setenv =
PYTHONDONTWRITEBYTECODE=1
custom_user: AUTH_USER_MODEL=tests.User
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
py36: python3.6
py37: python3.7
deps =
py27: mock
dj111: Django<1.12
dj21: Django>=2.1b1,<2.2
dj22: Django<2.3
djmaster: https://github.com/django/django/archive/master.tar.gz
yubikey: django-otp-yubikey
coverage
django-formtools
django_otp>=0.6.0,<0.99
django-phonenumber-field>=1.1.0,<2.99
phonenumbers>=7.0.9,<8.99
qrcode>=4.0.0,<6.99
twilio>=6.0
ignore_outcome =
djmaster: True
commands =
coverage run {envbindir}/django-admin.py test -v 2 --pythonpath=./ --settings=tests.settings
coverage report
[testenv:flake8]
basepython = python3.5
deps = flake8
commands = flake8 two_factor
[testenv:isort]
basepython = python3.5
deps = isort
commands = isort -rc -c --diff example tests two_factor