diff options
author | Dan Timoney <dtimoney@att.com> | 2020-02-18 14:46:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-18 14:46:16 +0000 |
commit | fad2018502f1794f2569becaaa65b6f44bb93a8c (patch) | |
tree | 5b397f2f4d00c135529582ce9aa4ec921c919531 /docs/tox.ini | |
parent | 6cad29cfc9b771dfaf99a7c1b47c04ca9fcf328c (diff) | |
parent | 1a5084c88598177d8f260f7c18f4f6aa5d715de1 (diff) |
Merge "Migrate sdnc-oam docs"
Former-commit-id: f186adb942879e2658142f0cd262f95c8b99e886
Diffstat (limited to 'docs/tox.ini')
-rw-r--r-- | docs/tox.ini | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/tox.ini b/docs/tox.ini new file mode 100644 index 00000000..edac8c35 --- /dev/null +++ b/docs/tox.ini @@ -0,0 +1,22 @@ +[tox] +minversion = 1.6 +envlist = docs, +skipsdist = true + +[testenv:docs] +basepython = python3 +deps = -r{toxinidir}/requirements-docs.txt +commands = + sphinx-build -b html -n -d {envtmpdir}/doctrees ./ {toxinidir}/_build/html + echo "Generated docs available in {toxinidir}/_build/html" +whitelist_externals = + echo + git + sh + +[testenv:docs-linkcheck] +basepython = python3 +#deps = -r{toxinidir}/requirements-docs.txt +commands = echo "Link Checking not enforced" +#commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./ {toxinidir}/_build/linkcheck +whitelist_externals = echo |