forked from jazzband/django-two-factor-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
55 lines (48 loc) · 1.19 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
[tox]
; Minimum version of Tox
minversion = 1.8
envlist =
py{27,32,33,34,35}-dj18{,-yubikey,-custom_user},
py{27,34,35}-dj{19,110}{,-yubikey,-custom_user},
py{27,34,35}-djmaster{,-yubikey,-custom_user},
flake8
skipsdist = True
[testenv]
setenv =
PYTHONDONTWRITEBYTECODE=1
custom_user: AUTH_USER_MODEL=tests.User
basepython =
py27: python2.7
py32: python3.3
py33: python3.3
py34: python3.4
py35: python3.5
deps =
py27: mock
dj18: Django>=1.8,<1.9
dj19: Django>=1.9,<1.10
dj110: Django<1.11
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
ignore_outcome =
djmaster: True
commands =
coverage run {envbindir}/django-admin.py test -v 2 --pythonpath=./ --settings=tests.settings
coverage report
pip_pre = True
usedevelop = True
[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