Skip to content

Commit 184aa01

Browse files
committed
Add tox.ini.
1 parent 9f1265b commit 184aa01

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.hgignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
^tests/media/tiny_png
44
^HGREV$
55
^.coverage$
6+
^.tox/

tox.ini

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[tox]
2+
envlist=py26-1.2,py26,py26-trunk,py27-1.2,py27,py27-trunk
3+
4+
[testenv]
5+
deps=
6+
django==1.3.1
7+
South==0.7.3
8+
PIL==1.1.7
9+
commands=python setup.py test
10+
11+
[testenv:py26-1.2]
12+
basepython=python2.6
13+
deps=
14+
django==1.2.7
15+
South==0.7.3
16+
PIL==1.1.7
17+
18+
[testenv:py26-trunk]
19+
basepython=python2.6
20+
deps=
21+
https://github.com/django/django/tarball/master
22+
South==0.7.3
23+
PIL==1.1.7
24+
25+
[testenv:py27-1.2]
26+
basepython=python2.7
27+
deps=
28+
django==1.2.7
29+
South==0.7.3
30+
PIL==1.1.7
31+
32+
[testenv:py27-trunk]
33+
basepython=python2.7
34+
deps=
35+
https://github.com/django/django/tarball/master
36+
PIL==1.1.7
37+
South==0.7.3

0 commit comments

Comments
 (0)