Skip to content

Commit

Permalink
test: types: Bump deadline for dict test
Browse files Browse the repository at this point in the history
Hypothesis sometimes complains it takes too long to generate examples
for this test. Bump the deadline.

Signed-off-by: Sean Anderson <seanga2@gmail.com>
  • Loading branch information
Forty-Bot committed Nov 18, 2023
1 parent 10c93ff commit 2a22a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/types_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_bad_size(n):
with pytest.raises(ValueError):
Array[Size_t, n]

@settings(max_examples=25)
@settings(max_examples=25, deadline=5000)
class DictComparison(RuleBasedStateMachine):
keys = Bundle('keys')
values = Bundle('values')
Expand Down

0 comments on commit 2a22a9f

Please sign in to comment.