From 9755ece5ccb8a4cd94e74e7845863aa48d290684 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Wed, 2 Jul 2014 21:45:38 +0100 Subject: [PATCH] Added python 3.2 to tox settings --- tox.ini | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tox.ini b/tox.ini index c67a219b4..8ffd0ef60 100644 --- a/tox.ini +++ b/tox.ini @@ -10,6 +10,7 @@ envlist = py26-dj16-sqlite, py27-dj16-postgres, py27-dj16-sqlite, + py32-dj16-postgres, py33-dj16-postgres, py34-dj16-postgres @@ -75,6 +76,21 @@ setenv = DATABASE_ENGINE=django.db.backends.mysql DATABASE_USER=wagtail +[testenv:py32-dj16-postgres] +basepython=python3.2 +deps = + {[deps]dj16} + psycopg2==2.5.3 +setenv = + DATABASE_ENGINE=django.db.backends.postgresql_psycopg2 + +[testenv:py32-dj16-sqlite] +basepython=python3.2 +deps = + {[deps]dj16} +setenv = + DATABASE_ENGINE=django.db.backends.sqlite3 + [testenv:py33-dj16-postgres] basepython=python3.3 deps =