tox.ini 508 B

1234567891011121314151617181920212223242526272829
  1. [tox]
  2. downloadcache = {toxworkdir}/cache/
  3. envlist = py27, pypy, py27-noext, pypy-noext, py34, py34-noext, py35, py35-noext
  4. [testenv]
  5. commands = make check
  6. recreate = True
  7. whitelist_externals = make
  8. [testenv:py27]
  9. deps = mock
  10. [testenv:pypy]
  11. deps = mock
  12. [testenv:py27-noext]
  13. deps = mock
  14. commands = make check-noextensions
  15. [testenv:pypy-noext]
  16. deps = mock
  17. commands = make check-noextensions
  18. [testenv:py34-noext]
  19. commands = make check-noextensions
  20. [testenv:py35-noext]
  21. commands = make check-noextensions