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.
 
 
 

20 lines
317 B

  1. [tox]
  2. envlist = py{27,33,34,35},pep8
  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 {posargs}
  11. [testenv:pep8]
  12. deps = flake8
  13. commands = flake8 {posargs}
  14. [flake8]
  15. exclude = .tox
  16. show-source = true