summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorstark, steven <ss820f@att.com>2018-03-29 12:54:39 -0700
committerstark, steven <ss820f@att.com>2018-03-29 12:59:00 -0700
commit72322e8a3823b823f9398fd99f2f99b5adba1871 (patch)
tree4085f5bec12fdb120d132f5993160eb5144e9657 /tox.ini
parentf0db7dce31005b0dc17265851231eee6c2f98405 (diff)
VNFRQTS Template for VNF Test Descriptions
Adding initial documents for documenatation build Adding template for VNF Test Descriptions Change-Id: I4b45a30c63edf5ce90060ce94185af72429c78d4 Issue-ID: VNFRQTS-53 Signed-off-by: stark, steven <ss820f@att.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini15
1 files changed, 15 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..b3ee8fc
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,15 @@
+[tox]
+minversion = 1.6
+envlist = docs,docs-linkcheck
+skipsdist = true
+
+[testenv:docs]
+deps = -r{toxinidir}/etc/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}/etc/requirements.txt
+commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck