From: Bartek Grzybowski Date: Fri, 2 Apr 2021 11:54:42 +0000 (+0200) Subject: Exclude .tox subdir when building documentation X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F62%2F120162%2F1;p=integration.git 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 --- 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")