Skip to content

Commit ccb291d

Browse files
committed
Update tox to run Django 1.8 tests
1 parent 35a3644 commit ccb291d

File tree

1 file changed

+14
-105
lines changed

1 file changed

+14
-105
lines changed

tox.ini

+14-105
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,20 @@
11
[tox]
22
envlist=
3-
py26-1.4,py26-1.5,py26-1.6,
4-
py27-1.4,py27-1.5,py27-1.6,py27-1.7,py27-trunk,
5-
py33-1.5,py33-1.6,py33-1.7,py33-trunk,
6-
py34-1.5,py34-1.6,py34-1.7,py34-trunk
7-
8-
[base]
9-
deps=
10-
South==0.8.4
11-
Pillow==2.4.0
12-
mock==1.0.1
3+
py26-django{14,15,16},
4+
py27-django{14,15,16,17,18,_trunk},
5+
py33-django{15,16,17,18,_trunk},
6+
py34-django{15,16,17,18,_trunk}
137

148
[testenv]
159
commands=python setup.py test
1610

17-
[testenv:py26-1.4]
18-
basepython=python2.6
19-
deps=
20-
Django==1.4.13
21-
{[base]deps}
22-
23-
[testenv:py26-1.5]
24-
basepython=python2.6
25-
deps=
26-
Django==1.5.8
27-
{[base]deps}
28-
29-
[testenv:py26-1.6]
30-
basepython=python2.6
31-
deps=
32-
Django==1.6.5
33-
{[base]deps}
34-
35-
[testenv:py27-1.4]
36-
basepython=python2.7
37-
deps=
38-
Django==1.4.13
39-
{[base]deps}
40-
41-
[testenv:py27-1.5]
42-
basepython=python2.7
43-
deps=
44-
Django==1.5.8
45-
{[base]deps}
46-
47-
[testenv:py27-1.6]
48-
basepython=python2.7
49-
deps=
50-
Django==1.6.5
51-
{[base]deps}
52-
53-
[testenv:py27-1.7]
54-
basepython=python2.7
55-
deps=
56-
https://github.com/django/django/tarball/stable/1.7.x
57-
{[base]deps}
58-
59-
[testenv:py27-trunk]
60-
basepython=python2.7
61-
deps=
62-
https://github.com/django/django/tarball/master
63-
{[base]deps}
64-
65-
[testenv:py33-1.5]
66-
basepython=python3.3
67-
deps=
68-
Django==1.5.8
69-
{[base]deps}
70-
71-
[testenv:py33-1.6]
72-
basepython=python3.3
73-
deps=
74-
Django==1.6.5
75-
{[base]deps}
76-
77-
[testenv:py33-1.7]
78-
basepython=python3.3
79-
deps=
80-
https://github.com/django/django/tarball/stable/1.7.x
81-
{[base]deps}
82-
83-
[testenv:py33-trunk]
84-
basepython=python3.3
85-
deps=
86-
https://github.com/django/django/tarball/master
87-
{[base]deps}
88-
89-
[testenv:py34-1.5]
90-
basepython=python3.4
91-
deps=
92-
Django==1.5.8
93-
{[base]deps}
94-
95-
[testenv:py34-1.6]
96-
basepython=python3.4
97-
deps=
98-
Django==1.6.5
99-
{[base]deps}
100-
101-
[testenv:py34-1.7]
102-
basepython=python3.4
103-
deps=
104-
https://github.com/django/django/tarball/stable/1.7.x
105-
{[base]deps}
106-
107-
[testenv:py34-trunk]
108-
basepython=python3.4
109-
deps=
110-
https://github.com/django/django/tarball/master
111-
{[base]deps}
11+
deps =
12+
django14: Django>=1.4, <1.5
13+
django15: Django>=1.5, <1.6
14+
django16: Django>=1.6, <1.7
15+
django17: Django>=1.7, <1.8
16+
django18: Django>=1.8, <1.9
17+
django_trunk: https://github.com/django/django/tarball/master
18+
South==0.8.4
19+
Pillow==2.4.0
20+
mock==1.0.1

0 commit comments

Comments
 (0)