Skip to content

Commit

Permalink
test: increase deadline to 1000 on serialize/deserialize state (for y…
Browse files Browse the repository at this point in the history
…aml)
  • Loading branch information
hollandjg committed Nov 30, 2023
1 parent f617f22 commit 55df567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@given(standard_state_dataclass_strategy(), serializer_dump_load_strategy())
@settings(suppress_health_check={HealthCheck.too_slow}, deadline=500)
@settings(suppress_health_check={HealthCheck.too_slow}, deadline=1000)
def test_state_serialize_deserialize(o: StandardStateDataClass, dump_load):
o_loaded = dump_load(o)
assert o.variables == o_loaded.variables
Expand Down

0 comments on commit 55df567

Please sign in to comment.