Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. [testenv:py27-docs]
  2. basepython = python2.7
  3. sitepackages = True
  4. deps =
  5. Sphinx
  6. changedir = docs
  7. commands =
  8. sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
  9. sphinx-build -W -b doctest -d {envtmpdir}/doctrees . {envtmpdir}/html
  10.  
  11. [testenv:py34-docs]
  12. basepython = python3.4
  13. sitepackages = {[testenv:py27-docs]sitepackages}
  14. deps = {[testenv:py27-docs]deps}
  15. changedir = {[testenv:py27-docs]changedir}
  16. commands =
  17. sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
  18. sphinx-build -W -b doctest -d {envtmpdir}/doctrees . {envtmpdir}/html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement