aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorAaron Smith <aasmith@redhat.com>2018-09-19 23:23:26 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-09-19 23:23:26 +0000
commitec05bfdf4721bec6abab0b912cee721c5cc54e1d (patch)
tree398fa90afba3ee7fff49161b6c6e5189a56aa258 /tox.ini
parente7f7e9226f2370afe0d57b4c43c5bfe4bf30a942 (diff)
parent478dc53bfdda4aec04045302f1c3f822cbfc12a5 (diff)
Merge "Local Documentation Builds"
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini17
1 files changed, 17 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 00000000..69aa1893
--- /dev/null
+++ b/tox.ini
@@ -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