Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 3cf5841

Browse files
committed
skip known failing test
1 parent db86f1e commit 3cf5841

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tests/system/test_retry_streaming.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,14 @@ def test_streaming_transient_retryable_partial_data(sequence):
128128
"""
129129
Server stream yields some data before failing with a retryable error a number of times before success.
130130
Wrapped stream should contain data from all attempts
131+
132+
TODO: implement fix for rest client: https://github.com/googleapis/gapic-showcase/issues/1377
131133
"""
132134
from google.protobuf.duration_pb2 import Duration
133135

136+
if sequence.transport == type(sequence).get_transport_class("rest"):
137+
pytest.skip("Skipping due to known streaming issue in rest client")
138+
134139
retry = retries.StreamingRetry(
135140
predicate=retries.if_exception_type(core_exceptions.ServiceUnavailable),
136141
initial=0,

0 commit comments

Comments
 (0)