diff options
author | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2021-01-29 16:17:22 -0800 |
---|---|---|
committer | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2021-02-01 10:47:28 -0800 |
commit | 17907a82a2932a05b4a722baedc8a0710e118335 (patch) | |
tree | fd259e7d6f21986282a21f98329f68ea665f6da1 | |
parent | 95de994e362fd3a432b24760faafbbb6ba25f6f3 (diff) |
Add missing conf.py import
Add missing docs import
Issue-ID: CIMAN-33
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
Change-Id: Ibefaaa775de8b215079cd3b481b2af7c55e13beb
-rw-r--r-- | docs/conf.py | 2 | ||||
-rw-r--r-- | tox.ini | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index 072d330..8c226ba 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,3 +1,5 @@ +from docs_conf.conf import * + branch = 'latest' master_doc = 'index' @@ -7,7 +7,7 @@ downloadcache = ~/cache/pip [flake8] ignore = E501,E722 -exclude = ./venv-tox,./.tox,./venv +exclude = ./venv-tox,./.tox,./venv,./docs [testenv] deps = -r{toxinidir}/requirements.txt |