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 =