tox.ini 504 B

1234567891011121314151617181920212223242526272829303132
  1. [tox]
  2. envlist = py26, py27, py32, py33, py34, py35
  3. # py34 # bug with virtualenv so tox doesn't work?
  4. [testenv]
  5. #setenv = PYTHONPATH = {toxinidir}:{toxinidir}/configmanager
  6. commands = python setup.py test
  7. # python -m unittest discover
  8. [testenv:py26]
  9. basepython=python2.6
  10. [testenv:py27]
  11. basepython=python2.7
  12. [testenv:py32]
  13. basepython=python3.2
  14. [testenv:py33]
  15. basepython=python3.3
  16. [testenv:py34]
  17. basepython=python3.4
  18. [testenv:py35]
  19. basepython=python3.5
  20. [testenv:pypy]
  21. basepython=pypy