mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-09 16:04:45 +00:00
Added python 3.2 to tox settings
This commit is contained in:
parent
76b720721a
commit
9755ece5cc
1 changed files with 16 additions and 0 deletions
16
tox.ini
16
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 =
|
||||
|
|
|
|||
Loading…
Reference in a new issue