forked from django-guardian/django-guardian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
166 lines (137 loc) · 2.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
[tox]
downloadcache = {toxworkdir}/cache/
envlist =
py26,
py26-grappelli,
py26-django12-grappelli,
py26-django12,
py26-django13,
py26-django14,
py26-django15,
py27,
py27-grappelli,
py27-django12-grappelli,
py27-django12,
py27-django13,
py27-django14,
py27-django15,
py33-django15,
migrations,
migrations-django15,
docs,
flakes,
[testenv]
commands = python setup.py test
deps =
django==1.4.5
mock>=0.7.2
[testenv:mysql]
setenv =
GUARDIAN_TEST_DB_BACKEND=mysql
deps =
django==1.3.7
MySQL-python==1.2.3
[testenv:postgresql]
setenv =
GUARDIAN_TEST_DB_BACKEND=postgresql
deps =
django==1.3.7
psycopg2==2.4.1
# psycopg2==2.4.2 has troubles with test runner, see: https://code.djangoproject.com/ticket/16250
[django12]
deps = django==1.2.7
[django13]
deps = django==1.3.7
[django14]
deps = django==1.4.5
[django15]
deps = django==1.5
[testenv:py26-grappelli]
basepython = python2.6
deps =
{[django13]deps}
django-grappelli==2.3.5
[testenv:py26-django12]
basepython = python2.6
deps = {[django12]deps}
[testenv:py26-django13]
basepython = python2.6
deps = {[django13]deps}
[testenv:py26-django14]
basepython = python2.6
deps = {[django14]deps}
[testenv:py26-django15]
basepython = python2.6
deps = {[django15]deps}
[testenv:py26-django12-grappelli]
basepython = python2.6
deps =
{[django12]deps}
django-grappelli==2.3.5
[testenv:py27-grappelli]
basepython = python2.7
deps =
{[django13]deps}
django-grappelli==2.3.5
[testenv:py27-django12]
basepython = python2.7
deps = {[django12]deps}
[testenv:py27-django13]
basepython = python2.7
deps = {[django13]deps}
[testenv:py27-django14]
basepython = python2.7
deps = {[django14]deps}
[testenv:py27-django15]
basepython = python2.7
deps = {[django15]deps}
[testenv:py33-django15]
basepython = python3.3
deps = {[django15]deps}
[testenv:py27-django12-grappelli]
basepython = python2.7
deps =
{[django12]deps}
django-grappelli==2.3.5
[testenv:migrations]
setenv =
GUARDIAN_TEST_SOUTH="yes"
changedir = example_project
deps =
django==1.4.5
mock
south
commands =
./.pre_test.sh
python manage.py syncdb --noinput
python manage.py migrationcheck
python manage.py test guardian
./.post_test.sh
[testenv:migrations-django15]
setenv =
GUARDIAN_TEST_SOUTH="yes"
changedir = example_project
deps =
{[django15]deps}
mock
south
commands =
./.pre_test.sh
python manage.py syncdb --noinput
python manage.py migrationcheck
python manage.py test guardian --traceback
./.post_test.sh
[testenv:docs]
changedir = docs
deps =
sphinx
commands =
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:flakes]
deps =
pyflakes
commands =
python setup.py flakes
[testenv:example]
changedir = example_project
commands = python manage.py test guardian --failfast --traceback