File tree Expand file tree Collapse file tree
.librarian/generator-input/client-post-processing Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments