| 123456789101112131415161718192021222324252627282930313233343536373839 |
- [tox]
- envlist = py26, py27, py31, py32, py33, pypy
- [base]
- deps =
- sqlalchemy
- nose-cov
- pam
- requests
- [testenv]
- commands = nosetests []
- [testenv:py26]
- deps =
- python-ldap
- dulwich
- {[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:pypy]
- deps =
- dulwich
- {[base]deps}
|