-
Notifications
You must be signed in to change notification settings - Fork 246
/
tox.ini
80 lines (59 loc) · 1.49 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tox]
envlist =
py2.7-d1.7, py2.7-d1.8, py2.7-d1.9, py2.7-d1.10, py2.7-d1.11,
py3.5-d1.8, py3.5-d1.9, py3.5-d1.10, py3.5-d1.11, py3.5-d2.0,
py3.5-d2.1, py3.5-d2.2, py3.6-d1.11, py3.6-d2.0, py3.6-d2.1,
py3.6-d2.2
[testenv]
commands = {envpython} tests/manage.py test django_messages --settings=settings
# Python 2.7
[testenv:py2.7-d1.7]
basepython = python2.7
deps = django>=1.7.1,<1.8
[testenv:py2.7-d1.8]
basepython = python2.7
deps = django>=1.8,<1.9
[testenv:py2.7-d1.9]
basepython = python2.7
deps = django>=1.9,<1.9.99
[testenv:py2.7-d1.10]
basepython = python2.7
deps = django>=1.10,<1.10.99
[testenv:py2.7-d1.11]
basepython = python2.7
deps = django>=1.11,<1.11.99
# Python 3.5
[testenv:py3.5-d1.8]
basepython = python3.5
deps = django>=1.8,<1.9
[testenv:py3.5-d1.9]
basepython = python3.5
deps = django>=1.9,<1.9.99
[testenv:py3.5-d1.10]
basepython = python3.5
deps = django>=1.10,<1.10.99
[testenv:py3.5-d1.11]
basepython = python3.5
deps = django>=1.11,<1.11.99
[testenv:py3.5-d2.0]
basepython = python3.5
deps = django>=2.0,<2.0.99
[testenv:py3.5-d2.1]
basepython = python3.5
deps = django>=2.1,<2.1.99
[testenv:py3.5-d2.2]
basepython = python3.5
deps = django>=2.2,<2.2.99
# Python 3.6
[testenv:py3.6-d1.11]
basepython = python3.6
deps = django>=1.11,<1.11.99
[testenv:py3.6-d2.0]
basepython = python3.6
deps = django>=2.0,<2.0.99
[testenv:py3.6-d2.1]
basepython = python3.6
deps = django>=2.1,<2.1.99
[testenv:py3.6-d2.2]
basepython = python3.6
deps = django>=2.2,<2.2.99