aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2012-09-27 13:01:49 +0100
committerTom Christie2012-09-27 13:01:49 +0100
commitec3c0c288b37bb8a8999590a5f338fd8c70dc876 (patch)
tree545e3bbe89342af254e9e674fea3bb39da140cd0
parentfe666a14ee0bcce05972671c08cdf91f3b85ebac (diff)
downloaddjango-rest-framework-ec3c0c288b37bb8a8999590a5f338fd8c70dc876.tar.bz2
Add py27 to tox
-rw-r--r--tox.ini24
1 files changed, 18 insertions, 6 deletions
diff --git a/tox.ini b/tox.ini
index d24e694a..f9bd0990 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,18 +1,30 @@
[tox]
downloadcache = {toxworkdir}/cache/
-envlist = python2.6-django1.5,python2.6-django1.4,python2.6-django1.3
+envlist = py2.7-django1.5,py2.7-django1.4,py2.7-django1.3,py2.6-django1.5,py2.6-django1.4,py2.6-django1.3
[testenv]
commands = {envpython} rest_framework/runtests/runtests.py
-[testenv:python2.6-django1.5]
+[testenv:py2.7-django1.5]
+basepython = python2.7
+deps = https://github.com/django/django/zipball/master
+
+[testenv:py2.7-django1.4]
+basepython = python2.7
+deps = django>=1.4.1
+
+[testenv:py2.7-django1.3]
+basepython = python2.7
+deps = django>=1.3.2
+
+[testenv:py2.6-django1.5]
basepython = python2.6
deps = https://github.com/django/django/zipball/master
-[testenv:python2.6-django1.4]
+[testenv:py2.6-django1.4]
basepython = python2.6
-deps = django>=1.4,<1.5
+deps = django>=1.4.1
-[testenv:python2.6-django1.3]
+[testenv:py2.6-django1.3]
basepython = python2.6
-deps = django>=1.3,<1.4
+deps = django>=1.3.2