tox.ini 503 B

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