aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-14 23:21:37 +0200
committerAymeric Augustin2013-10-14 23:21:37 +0200
commit8578806c22457af36f3f7cee500884d3c5ff616c (patch)
tree23c2672e30f542b2adae65d9dbb0dd8c1275a2b1 /tox.ini
parentf4699b2333aa42024fce0f75c33cec7412747faf (diff)
downloaddjango-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.ini25
1 files changed, 25 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..8e37e43
--- /dev/null
+++ b/tox.ini
@@ -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