This adds configuration for performing local documentation builds
with the following simple command:
tox -e docs
Change-Id: If45ac852cc740b4c6aff3ac6eb29d122905ba194
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
/lib/auto.egg-info
/build
/dist
-/docs_build
/docs_output
/opnfvdocs
+.tox
+docs/_build/*
--- /dev/null
+from docs_conf.conf import *
--- /dev/null
+---
+project_cfg: opnfv
+project: AUTO
--- /dev/null
+lfdocs-conf
+sphinx_opnfv_theme
--- /dev/null
+[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