forked from Kozea/Radicale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
45 lines (37 loc) · 659 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tox]
envlist = py26, py27, py32, py33, py34#, pypy
[base]
deps =
sqlalchemy
nose-cov
pam
requests
[testenv]
commands = nosetests []
[testenv:py26]
deps =
python-ldap
dulwich<=0.9.5
{[base]deps}
[testenv:py27]
deps =
python-ldap
dulwich
{[base]deps}
[testenv:py32]
deps =
git+https://github.com/eberle1080/dulwich-py3k.git
{[base]deps}
[testenv:py33]
deps =
git+https://github.com/eberle1080/dulwich-py3k.git
{[base]deps}
[testenv:py34]
deps =
git+https://github.com/eberle1080/dulwich-py3k.git
{[base]deps}
# Pypy support seems to be broken, at least with sqlalchemy
#[testenv:pypy]
#deps =
# dulwich
# {[base]deps}