From 00dd886d810dce6dbe0d0d1bd2fdee53afd17bf5 Mon Sep 17 00:00:00 2001 From: Bartek Grzybowski Date: Fri, 2 Apr 2021 13:54:42 +0200 Subject: [PATCH] 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 --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) 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") -- 2.16.6