From 3affc968eb27e47e2d834773a3150db3c3fce2e6 Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Mon, 19 Mar 2018 15:09:06 -0700 Subject: Enable Local Docs builds by using LF Docs Conf The docs-conf[1] project will allow releng to have local docs builds using the OPNFV theme while also not needing to duplicate the opnfvdocs conf.py file. [1] https://github.com/lfit/releng-docs-conf Change-Id: I255faf045eccb363993af9dfb81b487e538cbb41 Signed-off-by: Trevor Bramwell --- tox.ini | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 6618a8189..abdffc52d 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27 +envlist = jjb,docs,docs-linkcheck skipsdist = True [testenv] @@ -18,3 +18,14 @@ deps = jenkins-job-builder==1.6.1 commands= jenkins-jobs test -o job_output -r jjb/global:{posargs:"jjb/"} + +[testenv:docs] +deps = -r{toxinidir}/docs/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 = -r{toxinidir}/docs/requirements.txt +commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs {toxinidir}/docs/_build/linkcheck -- cgit 1.2.3-korg