We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0775d2 commit 7e02b53Copy full SHA for 7e02b53
1 file changed
gapic/schema/api.py
@@ -935,11 +935,13 @@ def enforce_valid_library_settings(
935
936
# Check to see if selective gapic generation methods are valid.
937
selective_gapic_errors = {}
938
+ # TODO(https://github.com/googleapis/gapic-generator-python/issues/2446):
939
+ # Workaround issue in Python 3.14 related to code coverage by adding `# pragma: no branch`
940
for (
941
method_name
942
) in (
943
library_settings.python_settings.common.selective_gapic_generation.methods
- ):
944
+ ): # pragma: no branch
945
if method_name not in self.all_methods:
946
selective_gapic_errors[method_name] = "Method does not exist."
947
elif not method_name.startswith(library_settings.version):
0 commit comments