A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
583 B

  1. [tox]
  2. envlist = py{27,33,34,35},pep8,docs
  3. [testenv]
  4. usedevelop = True
  5. # Needed for asciidoc
  6. sitepackages = True
  7. # Needed for asciidoc
  8. passenv = PYTHONPATH
  9. deps = -r{toxinidir}/dev-req.txt
  10. commands = nosetests --with-coverage --cover-package=hyde --cover-erase {posargs}
  11. [testenv:pep8]
  12. deps = flake8
  13. commands = flake8 hyde {posargs}
  14. [flake8]
  15. exclude = .tox
  16. show-source = true
  17. [testenv:docs]
  18. deps = -rdocs-requirements.txt
  19. commands =
  20. sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
  21. doc8 --allow-long-titles README.rst docs/ --ignore-path docs/_build/