diff options
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..d24e694a --- /dev/null +++ b/tox.ini @@ -0,0 +1,18 @@ +[tox] +downloadcache = {toxworkdir}/cache/ +envlist = python2.6-django1.5,python2.6-django1.4,python2.6-django1.3 + +[testenv] +commands = {envpython} rest_framework/runtests/runtests.py + +[testenv:python2.6-django1.5] +basepython = python2.6 +deps = https://github.com/django/django/zipball/master + +[testenv:python2.6-django1.4] +basepython = python2.6 +deps = django>=1.4,<1.5 + +[testenv:python2.6-django1.3] +basepython = python2.6 +deps = django>=1.3,<1.4 | 
