Skip to content
Closed
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
8 changes: 7 additions & 1 deletion tests/meticulous/assignor/test_copartitioned_assignor.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@
from faust.assignor.client_assignment import CopartitionedAssignment
from faust.assignor.copartitioned_assignor import CopartitionedAssignor

TEST_DEADLINE = 4000
# These Hypothesis property tests assert assignment *correctness*, not
# performance. PyPy's JIT warmup makes a single example's timing vary by
# well over a second, so a fixed deadline is tripped intermittently
# (DeadlineExceeded -> FlakyFailure) even though the assignment is valid --
# flaking the PyPy CI leg. Disable the deadline; the job's own timeout still
# guards against a real hang.
TEST_DEADLINE = None


_topics = {"foo", "bar", "baz"}
Expand Down
Loading