tox.ini 545 B

12345678910111213141516171819202122232425262728293031323334
  1. [tox]
  2. envlist = py33,py34,py35,py36
  3. [testenv]
  4. commands = python setup.py test
  5. [testenv:py33]
  6. basepython = python3.3
  7. deps =
  8. pytest
  9. six
  10. pytest-cov
  11. pytest-cache
  12. pytest-timeout
  13. commands = py.test --strict --verbose --tb=long --cov hystrix --cov-report term-missing tests
  14. [testenv:py34]
  15. basepython = python3.4
  16. [testenv:py35]
  17. basepython = python3.5
  18. [testenv:py36]
  19. basepython = python3.6
  20. [testenv:docs]
  21. changedir = docs
  22. deps =
  23. sphinx
  24. sphinx_rtd_theme
  25. sphinxcontrib-napoleon
  26. commands =
  27. /usr/bin/make clean html