Skip to content

Commit d6635a0

Browse files
fix: Mark test_streaming_pull_max_messages flaky (#1288)
1 parent 5cb2e2a commit d6635a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/system.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
from test_utils.system import unique_resource_id
4747

4848
C = TypeVar("C", bound=Callable[..., Any])
49-
typed_flaky = cast(Callable[[C], C], flaky(max_runs=3, min_passes=1))
49+
typed_flaky = cast(Callable[[C], C], flaky(max_runs=5, min_passes=1))
5050

5151

5252
@pytest.fixture(scope="module")
@@ -616,6 +616,7 @@ def test_streaming_pull_ack_deadline(
616616
finally:
617617
subscription_future.cancel()
618618

619+
@typed_flaky
619620
def test_streaming_pull_max_messages(
620621
self, publisher, topic_path_base, subscription_path_base, cleanup
621622
):

0 commit comments

Comments
 (0)