From 3788a98209e8065f88260d0e06e01ff63bb14c2e Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 14 Sep 2023 11:39:08 -0400 Subject: [PATCH] build: move to standard owlbot.py --- owlbot.py | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/owlbot.py b/owlbot.py index d02ed3cc0..ce738f01d 100644 --- a/owlbot.py +++ b/owlbot.py @@ -35,25 +35,7 @@ if clean_up_generated_samples: shutil.rmtree("samples/generated_samples", ignore_errors=True) clean_up_generated_samples = False - - # Work around gapic generator bug https://github.com/googleapis/gapic-generator-python/issues/1083 - s.replace( - library / "google/cloud/**/types/compute.py", - """A request message for InstanceGroupManagers.AbandonInstances. - See the method description for details.\n - Attributes""", - """A request message for InstanceGroupManagers.AbandonInstances. - See the method description for details.\n - .. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields\n - Attributes""" - ) - - # Work around formatting issues with docstrings - s.replace(library / "google/cloud/**/types/compute.py", """\"IT_\"""", """`IT_`""") - s.replace(library / "google/cloud/**/types/compute.py", """\"NS_\"""", """`NS_`""") - s.replace(library / "google/cloud/**/types/compute.py", """\/\[a-zA-Z0-9-_\]\/""", """`[a-zA-Z0-9-_]`""") - - s.move([library], excludes=["**/gapic_version.py", "README.rst"]) + s.move([library], excludes=["**/gapic_version.py"]) s.remove_staging_dirs() # ---------------------------------------------------------------------------- @@ -61,11 +43,11 @@ # ---------------------------------------------------------------------------- templated_files = gcp.CommonTemplates().py_library( - cov_level=98, + cov_level=100, microgenerator=True, versions=gcp.common.detect_versions(path="./google", default_first=True), ) -s.move(templated_files, excludes=[".coveragerc", ".github/release-please.yml", "README.rst"]) +s.move(templated_files, excludes=[".coveragerc", ".github/release-please.yml"]) python.py_samples(skip_readmes=True)