From 7e1f6da50524b5d98eb67adbf6dd0805df54233d Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Wed, 11 Aug 2021 11:43:40 -0500 Subject: [PATCH] chore(python): avoid `.nox` directories when building docs (#1180) --- synthtool/gcp/templates/python_library/docs/conf.py.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/synthtool/gcp/templates/python_library/docs/conf.py.j2 b/synthtool/gcp/templates/python_library/docs/conf.py.j2 index 0a00b52a8..bb68b82ea 100644 --- a/synthtool/gcp/templates/python_library/docs/conf.py.j2 +++ b/synthtool/gcp/templates/python_library/docs/conf.py.j2 @@ -110,6 +110,7 @@ language = None # directories to ignore when looking for source files. exclude_patterns = [ "_build", + "**/.nox/**/*", "samples/AUTHORING_GUIDE.md", "samples/CONTRIBUTING.md", "samples/snippets/README.rst",