diff options
| author | Aymeric Augustin | 2013-10-14 23:21:37 +0200 |
|---|---|---|
| committer | Aymeric Augustin | 2013-10-14 23:21:37 +0200 |
| commit | 8578806c22457af36f3f7cee500884d3c5ff616c (patch) | |
| tree | 23c2672e30f542b2adae65d9dbb0dd8c1275a2b1 /tox.ini | |
| parent | f4699b2333aa42024fce0f75c33cec7412747faf (diff) | |
| download | django-debug-toolbar-8578806c22457af36f3f7cee500884d3c5ff616c.tar.bz2 | |
Add tox.ini.
Currently this targets Django 1.4 & 1.5 on Python 2.6 & 2.7 as we'll
drop support for Django 1.3 and Python 2.5 in the next release.
Python 3.2 & 3.3 isn't supported yet.
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -0,0 +1,25 @@ +[tox] +envlist = + py26-django14, + py27-django14, + py26-django15, + py27-django15 + +[testenv] +commands = python runtests.py + +[testenv:py26-django14] +basepython = python2.6 +deps = Django>=1.4,<1.5 + +[testenv:py27-django14] +basepython = python2.7 +deps = Django>=1.4,<1.5 + +[testenv:py26-django15] +basepython = python2.6 +deps = Django>=1.5,<1.6 + +[testenv:py27-django15] +basepython = python2.7 +deps = Django>=1.5,<1.6 |
