From 11a2cbe46f08c98da4d14350b1778cdc4f32c6c6 Mon Sep 17 00:00:00 2001 From: Jacek Tomaszewski Date: Sat, 10 Nov 2012 19:32:02 +0100 Subject: [PATCH] Add tox configuration. --- tox.ini | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..4c95ac4 --- /dev/null +++ b/tox.ini @@ -0,0 +1,31 @@ +[tox] +distribute = False +envlist = + py26-1.4.X, py27-1.4.X, + py26-1.3.X, py27-1.3.X, + +[testenv] +downloadcache = {toxworkdir}/_download/ +commands = + {envpython} runtests.py + + +[testenv:py26-1.4.X] +basepython = python2.6 +deps = + Django==1.4.2 + +[testenv:py27-1.4.X] +basepython = python2.7 +deps = + Django==1.4.2 + +[testenv:py26-1.3.X] +basepython = python2.6 +deps = + Django==1.3.4 + +[testenv:py27-1.3.X] +basepython = python2.7 +deps = + Django==1.3.4