From 8578806c22457af36f3f7cee500884d3c5ff616c Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Mon, 14 Oct 2013 23:21:37 +0200 Subject: 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. --- tox.ini | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tox.ini 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 -- cgit v1.2.3