forked from jazzband/django-two-factor-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
63 lines (57 loc) · 1.34 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
[tox]
; Minimum version of Tox
minversion = 1.8
envlist =
py{27,34,35}-{dj18,dj110}-{normal,yubikey,custom_user},
py{27,34,35,36}-dj111-{normal,yubikey,custom_user},
py{35,36}-djmaster-{normal,yubikey,custom_user},
flake8
skipsdist = True
[travis]
unignore_outcomes = True
[travis:env]
DJANGO =
1.8: dj18
1.10: dj110
1.11: dj111
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
deps =
py27: mock
dj18: Django<1.9
dj110: Django<1.11
dj111: Django<1.12
djmaster: https://github.com/django/django/archive/master.tar.gz
yubikey: django-otp-yubikey
coverage
django-formtools
django-phonenumber-field>=0.7.2,<0.99
django_otp>=0.3.4,<0.99
phonenumbers>=7.0.9,<7.99
qrcode>=4.0.0,<4.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