tox.ini 594 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [tox]
  2. envlist = py26, py27, py32, py33, py34, 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<=0.9.5
  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:py34]
  30. deps =
  31. git+https://github.com/eberle1080/dulwich-py3k.git
  32. {[base]deps}
  33. [testenv:pypy]
  34. deps =
  35. dulwich
  36. {[base]deps}