1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00

Add new deps in tox, remove 3.1 support

This commit is contained in:
Guillaume Ayoub 2013-09-24 18:44:32 +02:00
parent e61a6e1fcd
commit 35840dcc51

18
tox.ini
View file

@ -3,6 +3,7 @@ envlist = py26, py27, py31, py32, py33, pypy
[base]
deps =
sqlalchemy
nose-cov
pam
requests
@ -13,21 +14,26 @@ commands = nosetests []
[testenv:py26]
deps =
python-ldap
dulwich
{[base]deps}
[testenv:py27]
deps =
python-ldap
dulwich
{[base]deps}
[testenv:py31]
deps = {[base]deps}
[testenv:py32]
deps = {[base]deps}
deps =
git+https://github.com/eberle1080/dulwich-py3k.git
{[base]deps}
[testenv:py33]
deps = {[base]deps}
deps =
git+https://github.com/eberle1080/dulwich-py3k.git
{[base]deps}
[testenv:pypy]
deps = {[base]deps}
deps =
dulwich
{[base]deps}