From 3b67237f80fe7a0bfd9019ec46b068dd027d3f8a Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Thu, 20 Jan 2011 13:01:01 +0100 Subject: [PATCH] Added tox file. --- tox.ini | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..389b881 --- /dev/null +++ b/tox.ini @@ -0,0 +1,27 @@ +[tox] +envlist = + py25, py26, py27, py25-trunk, py26-trunk, py27-trunk + +[testenv] +commands = + python setup.py test +deps = + django==1.2.4 + + +# We lied here, these are not really trunk, but rather the 1.3 beta-1, which +# is close enough. +[testenv:py25-trunk] +basepython = python2.5 +deps = + http://www.djangoproject.com/download/1.3-beta-1/tarball/ + +[testenv:py26-trunk] +basepython = python2.6 +deps = + http://www.djangoproject.com/download/1.3-beta-1/tarball/ + +[testenv:py27-trunk] +basepython = python2.7 +deps = + http://www.djangoproject.com/download/1.3-beta-1/tarball/