tox.ini 496 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [tox]
  2. envlist = py26, py27, py31, py32, py33, pypy
  3. [base]
  4. deps =
  5. sqlalchemy
  6. nose-cov
  7. pam
  8. requests
  9. [testenv]
  10. commands = nosetests []
  11. [testenv:py26]
  12. deps =
  13. python-ldap
  14. dulwich
  15. {[base]deps}
  16. [testenv:py27]
  17. deps =
  18. python-ldap
  19. dulwich
  20. {[base]deps}
  21. [testenv:py32]
  22. deps =
  23. git+https://github.com/eberle1080/dulwich-py3k.git
  24. {[base]deps}
  25. [testenv:py33]
  26. deps =
  27. git+https://github.com/eberle1080/dulwich-py3k.git
  28. {[base]deps}
  29. [testenv:pypy]
  30. deps =
  31. dulwich
  32. {[base]deps}