diff options
| author | Tom Christie | 2012-09-27 13:01:49 +0100 |
|---|---|---|
| committer | Tom Christie | 2012-09-27 13:01:49 +0100 |
| commit | ec3c0c288b37bb8a8999590a5f338fd8c70dc876 (patch) | |
| tree | 545e3bbe89342af254e9e674fea3bb39da140cd0 | |
| parent | fe666a14ee0bcce05972671c08cdf91f3b85ebac (diff) | |
| download | django-rest-framework-ec3c0c288b37bb8a8999590a5f338fd8c70dc876.tar.bz2 | |
Add py27 to tox
| -rw-r--r-- | tox.ini | 24 |
1 files changed, 18 insertions, 6 deletions
@@ -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 |
