Skip to content

Commit c4dd595

Browse files
authored
chore(python): exclude grpcio==1.49.0rc1 in tests (#1556)
chore(python): exclude in tests
1 parent 8c746a7 commit c4dd595

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

synthtool/gcp/templates/python_library/noxfile.py.j2

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,9 @@ def unit(session):
209209
def install_systemtest_dependencies(session, *constraints):
210210

211211
# Use pre-release gRPC for system tests.
212-
session.install("--pre", "grpcio")
212+
# Exclude version 1.49.0rc1 which has a known issue.
213+
# See https://github.com/grpc/grpc/pull/30642
214+
session.install("--pre", "grpcio!=1.49.0rc1")
213215

214216
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
215217

@@ -379,7 +381,8 @@ def prerelease_deps(session):
379381
# dependency of grpc
380382
"six",
381383
"googleapis-common-protos",
382-
"grpcio",
384+
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
385+
"grpcio!=1.49.0rc1",
383386
"grpcio-status",
384387
"google-api-core",
385388
"proto-plus",

0 commit comments

Comments
 (0)