tox.ini 325 B

123456789101112131415161718192021222324
  1. [tox]
  2. envlist = py33,py34,docs
  3. [testenv]
  4. commands = python setup.py test
  5. [testenv:py33]
  6. basepython = python3.3
  7. [testenv:py34]
  8. basepython = python3.4
  9. [testenv:pypy]
  10. basepython = pypy
  11. [testenv:docs]
  12. changedir = docs
  13. deps =
  14. sphinx
  15. sphinx_rtd_theme
  16. sphinxcontrib-napoleon
  17. commands =
  18. /usr/bin/make clean html