diff options
author | 2018-10-04 10:02:01 +0000 | |
---|---|---|
committer | 2018-10-04 10:02:01 +0000 | |
commit | 7b1b9e2ff57ceb2a75b3d60b95262c12e1823586 (patch) | |
tree | 6b20e7aa8d3c03b522171783b3a336a2dba24877 /tox.ini | |
parent | 4d9843200ef1dde2442667cd077afb24f09087ba (diff) | |
parent | 72c03e11197ad3eb9a532d9605bd64a6f9d82050 (diff) |
Merge "Local Documentation Builds"
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +[tox] +minversion = 1.6 +envlist = + docs, + docs-linkcheck +skipsdist = true + +[testenv:docs] +deps = -rdocs/requirements.txt +commands = + sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html + echo "Generated docs available in {toxinidir}/docs/_build/html" +whitelist_externals = echo + +[testenv:docs-linkcheck] +deps = -rdocs/requirements.txt +commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck |