aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-14 14:24:29 -0700
committerAymeric Augustin2013-10-14 14:24:29 -0700
commit87c314de8ff024d17b0a8eebb853e203e375fc12 (patch)
tree23c2672e30f542b2adae65d9dbb0dd8c1275a2b1
parentf4699b2333aa42024fce0f75c33cec7412747faf (diff)
parent8578806c22457af36f3f7cee500884d3c5ff616c (diff)
downloaddjango-debug-toolbar-87c314de8ff024d17b0a8eebb853e203e375fc12.tar.bz2
Merge pull request #409 from aaugustin/add-tox-file
Add tox.ini. Fix #407.
-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