Skip to content

Commit 2bb4a87

Browse files
committed
test against django 1.4 and django 1.5
1 parent ee5777d commit 2bb4a87

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

Diff for: tox.ini

+10-5
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,22 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = django15
7+
envlist = django14,django15
88
downloadcache = {toxworkdir}/.cache
99

1010
[testenv]
1111
commands = python example_project/manage.py test test_app
12-
deps =
13-
nose
14-
15-
[testenv:django15]
1612
deps =
1713
dj_database_url
1814
django-extensions>=0.9
1915
django-nose
16+
17+
[testenv:django14]
18+
deps =
19+
{[testenv]deps}
20+
django>=1.4,>1.5
21+
22+
[testenv:django15]
23+
deps =
24+
{[testenv]deps}
2025
django>=1.5,>1.6

0 commit comments

Comments
 (0)