Skip to content

Commit 3da8b58

Browse files
authored
chore: exclude grpcio==1.49.0rc1 in system tests (#845)
Unblock ci/cd by excluding pre-release version in question `1.49.0rc1` Update: grpc/grpc#30642 fixes issue grpc/grpc#30651 and grpc/grpc#30640 Restore noxfile once the merged fix is released
1 parent 27f2641 commit 3da8b58

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ def system(session):
129129
session.skip("System tests were not found")
130130

131131
# Use pre-release gRPC for system tests.
132-
session.install("--pre", "grpcio")
132+
# TODO: Revert #845 once grpc issue fix is released.
133+
# Pending grpc/grpc#30642 and grpc/grpc#30651.
134+
session.install("--pre", "grpcio!=1.49.0rc1")
133135

134136
# Install all test dependencies, then install this package into the
135137
# virtualenv's dist-packages.

0 commit comments

Comments
 (0)