tox.ini 449 B

123456789101112131415161718192021222324252627282930313233
  1. [tox]
  2. envlist = py33, py34, py35
  3. [base]
  4. deps =
  5. sqlalchemy
  6. nose-cov
  7. pam
  8. requests
  9. flake8
  10. [testenv]
  11. commands =
  12. flake8
  13. nosetests []
  14. [testenv:py33]
  15. deps =
  16. git+https://github.com/eberle1080/dulwich-py3k.git
  17. {[base]deps}
  18. [testenv:py34]
  19. deps =
  20. git+https://github.com/eberle1080/dulwich-py3k.git
  21. {[base]deps}
  22. [testenv:py35]
  23. deps =
  24. git+https://github.com/eberle1080/dulwich-py3k.git
  25. {[base]deps}
  26. [flake8]
  27. max-line-length = 100