Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Mark test_streaming_pull_max_messages flaky #1288

Merged
merged 1 commit into from
Nov 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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