From 5d74f42c60d8206bd5df8c33070992f1f12cfc75 Mon Sep 17 00:00:00 2001 From: Jacek Tomaszewski Date: Mon, 13 Apr 2015 00:04:41 +0200 Subject: [PATCH] Add 1.8 test to tox. --- tox.ini | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/tox.ini b/tox.ini index c043596..be9fa22 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,9 @@ exclude = .tox,docs/modeltranslation/conf.py [tox] distribute = False envlist = + py33-1.8.X, + py32-1.8.X, + py27-1.8.X, py33-1.7.X, py32-1.7.X, py27-1.7.X, @@ -26,6 +29,24 @@ commands = {envpython} runtests.py +[testenv:py33-1.8.X] +basepython = python3.3 +deps = + Django>=1.8,<1.9 + Pillow + +[testenv:py32-1.8.X] +basepython = python3.2 +deps = + Django>=1.8,<1.9 + Pillow + +[testenv:py27-1.8.X] +basepython = python2.7 +deps = + Django>=1.8,<1.9 + Pillow + [testenv:py33-1.7.X] basepython = python3.3 deps =