Skip to content

Commit

Permalink
chore(python): exclude grpcio==1.49.0rc1 in tests (#1556)
Browse files Browse the repository at this point in the history
chore(python): exclude  in tests
  • Loading branch information
parthea committed Aug 29, 2022
1 parent 8c746a7 commit c4dd595
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions synthtool/gcp/templates/python_library/noxfile.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,9 @@ def unit(session):
def install_systemtest_dependencies(session, *constraints):

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

session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)

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

0 comments on commit c4dd595

Please sign in to comment.