-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtox.ini
More file actions
78 lines (72 loc) · 2.09 KB
/
tox.ini
File metadata and controls
78 lines (72 loc) · 2.09 KB
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
[tox]
envlist = py{27}-django_{1_0,1_3,1_4,1_7},py{27,34,35,36}-django_{1_8,1_9,1_10,1_11}
[travis]
python =
2.7: py27
3.4: py34
3.5: py35
3.6: py36
[travis:env]
DJANGO =
1.0: django1_0
1.3: django1_3
1.4: django1_4
1.8: django1_8
1.9: django1_9
1.10: django1_10
1.11: django1_11
[testenv]
deps =
-rtest-projects/common.pip
django_1_0: -rtest-projects/django_1_0/setup.pip
django_1_3: -rtest-projects/django_1_3/setup.pip
django_1_4: -rtest-projects/django_1_4/setup.pip
django_1_7: -rtest-projects/django_1_7/setup.pip
django_1_8: -rtest-projects/django_1_8/setup.pip
django_1_9: -rtest-projects/django_1_9/setup.pip
django_1_10: -rtest-projects/django_1_10/setup.pip
django_1_11: -rtest-projects/django_1_11/setup.pip
commands =
python -tt manage.py test async
[testenv:py27-django_1_0]
changedir=test-projects/django_1_0
commands =
python -tt manage.py test d1 async
[testenv:py27-django_1_3]
changedir=test-projects/django_1_3
[testenv:py27-django_1_4]
changedir=test-projects/django_1_4
[testenv:py27-django_1_7]
changedir=test-projects/django_1_7
[testenv:py27-django_1_8]
changedir=test-projects/django_1_8
[testenv:py27-django_1_9]
changedir=test-projects/django_1_9
[testenv:py27-django_1_10]
changedir=test-projects/django_1_10
[testenv:py27-django_1_11]
changedir=test-projects/django_1_11
[testenv:py34-django_1_8]
changedir=test-projects/django_1_8
[testenv:py34-django_1_9]
changedir=test-projects/django_1_9
[testenv:py34-django_1_10]
changedir=test-projects/django_1_10
[testenv:py34-django_1_11]
changedir=test-projects/django_1_11
[testenv:py35-django_1_8]
changedir=test-projects/django_1_8
[testenv:py35-django_1_9]
changedir=test-projects/django_1_9
[testenv:py35-django_1_10]
changedir=test-projects/django_1_10
[testenv:py35-django_1_11]
changedir=test-projects/django_1_11
[testenv:py36-django_1_8]
changedir=test-projects/django_1_8
[testenv:py36-django_1_9]
changedir=test-projects/django_1_9
[testenv:py36-django_1_10]
changedir=test-projects/django_1_10
[testenv:py36-django_1_11]
changedir=test-projects/django_1_11