Added python 3.2 to tox settings

This commit is contained in:
Karl Hobley 2014-07-02 21:45:38 +01:00
parent 76b720721a
commit 9755ece5cc

16
tox.ini
View file

@ -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 =