Skip to content

Commit

Permalink
fix: Mark test_streaming_pull_max_messages flaky (#1288)
Browse files Browse the repository at this point in the history
  • Loading branch information
mukund-ananthu authored Nov 2, 2024
1 parent 5cb2e2a commit d6635a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from test_utils.system import unique_resource_id

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


@pytest.fixture(scope="module")
Expand Down Expand Up @@ -616,6 +616,7 @@ def test_streaming_pull_ack_deadline(
finally:
subscription_future.cancel()

@typed_flaky
def test_streaming_pull_max_messages(
self, publisher, topic_path_base, subscription_path_base, cleanup
):
Expand Down

0 comments on commit d6635a0

Please sign in to comment.