Skip to content

Commit 0e1d126

Browse files
committed
update post processing script
1 parent c1d30d5 commit 0e1d126

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.librarian/generator-input/client-post-processing/pubsub-integration.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -573,3 +573,22 @@ replacements:
573573
"""
574574
session.skip("Skipping core_deps_from_source for google-cloud-pubsub.")
575575
count: 1
576+
- paths:
577+
- "packages/google-cloud-pubsub/noxfile.py"
578+
before: 'SYSTEM_TEST_PYTHON_VERSIONS: List\[str\] = ALL_PYTHON'
579+
after: 'SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.12"]'
580+
count: 1
581+
- paths:
582+
- "packages/google-cloud-pubsub/noxfile.py"
583+
before: '"--cov=google",'
584+
after: '"--cov=google/cloud",'
585+
count: 1
586+
- paths:
587+
- "packages/google-cloud-pubsub/noxfile.py"
588+
before: '([ \t]+)session\.install\("--pre", "grpcio"\)'
589+
after: |-
590+
\g<1># Use pre-release gRPC for system tests.
591+
\g<1># Exclude version 1.52.0rc1 which has a known issue.
592+
\g<1># See https://github.com/grpc/grpc/issues/32163
593+
\g<1>session.install("--pre", "grpcio!=1.52.0rc1")
594+
count: 1

0 commit comments

Comments
 (0)