aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-04-02 13:54:42 +0200
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-04-02 14:49:38 +0200
commit45e18e3bf2ad9138bc83b1243dc03d7b05031fc6 (patch)
treebbefe571fbbcd13fd3c6a63e1399f10e16ed6306 /docs
parent073693e69c26e2579522fae7e4cd77b6c5f72433 (diff)
Exclude .tox subdir when building documentation
".tox" subdirectory is needlessly linted by doc builder. Ignoring it decreases the warnings from 48 to 5 and shortens doc generation time. Change-Id: Ieab78788e8d4a172179c3d597ce34c3f6fbe64d2 Issue-ID: INT-1900 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 2e41ab400..b351570aa 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -27,5 +27,7 @@ intersphinx_mapping['onap-cli'] = ('{}/onap-cli/en/%s'.format(doc_url) % branch,
html_last_updated_fmt = '%d-%b-%y %H:%M'
+exclude_patterns = ['.tox/**']
+
def setup(app):
app.add_css_file("css/ribbon.css")