tox.ini 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [tox]
  2. minversion = 1.6
  3. envlist = py27,pep8,releasenotes
  4. [testenv]
  5. setenv = VIRTUAL_ENV={envdir}
  6. LANG=en_US.UTF-8
  7. LANGUAGE=en_US:en
  8. LC_ALL=C
  9. deps = -r{toxinidir}/requirements.txt
  10. -r{toxinidir}/test-requirements.txt
  11. commands = /usr/bin/find . -type f -name "*.pyc" -delete
  12. ostestr {posargs}
  13. [tox:jenkins]
  14. sitepackages = True
  15. [testenv:pep8]
  16. commands = flake8
  17. [testenv:cover]
  18. setenv = NOSE_WITH_COVERAGE=1
  19. [testenv:venv]
  20. commands = {posargs}
  21. [testenv:docs]
  22. commands = python setup.py build_sphinx
  23. [testenv:releasenotes]
  24. deps = -r{toxinidir}/test-requirements.txt
  25. commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
  26. [flake8]
  27. # H803 skipped on purpose per list discussion.
  28. # E123, E125 skipped as they are invalid PEP-8.
  29. #
  30. # All other checks should be enabled in the future.
  31. ignore = E123,E125,H803,F403,F821,F811,F841,E501,H302,H303,H304,H306,H405,H404,H305,H307,H501,H201,H101
  32. show-source = True
  33. exclude=.venv,.git,.tox,.eggs