From dfe3a2ae8f605123c1af1930d48ac8714c44832a Mon Sep 17 00:00:00 2001 From: Guillaume Thomas Date: Fri, 21 Nov 2014 14:34:28 +0100 Subject: [PATCH] Added 2.6 tests in tox --- .travis.yml | 1 + tox.ini | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/.travis.yml b/.travis.yml index c50883a..8023e2f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: python python: + - 2.6 - 2.7 - 3.3 - 3.4 diff --git a/tox.ini b/tox.ini index 3b603c7..3610d6b 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,7 @@ [tox] envlist = + py26-1.4 , py26-1.5, py26-1.6, py27-1.4 , py27-1.5, py27-1.6, py32-1.5, py32-1.6, py33-1.5, py33-1.6, @@ -16,6 +17,30 @@ deps = commands = coverage run -a setup.py test +[testenv:py26-1.4] +basepython = python2.6 +deps = + Django == 1.4.12 + pandas >= 0.12.0 + coverage == 3.6 + django-model-utils >= 1.4.0 + +[testenv:py26-1.5] +basepython = python2.6 +deps = + Django == 1.5.7 + pandas >= 0.12.0 + coverage == 3.6 + django-model-utils >= 1.4.0 + +[testenv:py26-1.6] +basepython = python2.6 +deps = + Django == 1.6.4 + pandas >= 0.12.0 + coverage == 3.6 + django-model-utils == 1.4.0 + [testenv:py27-1.4] basepython = python2.7 deps =