Skip to content

Commit

Permalink
test: increase deadline for serialize deserialize variables to 1000ms…
Browse files Browse the repository at this point in the history
… for yaml
  • Loading branch information
hollandjg committed Nov 30, 2023
1 parent e756b26 commit 5874a89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_variable.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging

from hypothesis import given
from hypothesis import given, settings
from hypothesis import strategies as st

from .test_serializer import serializer_dump_load_strategy
Expand All @@ -16,6 +16,7 @@
),
serializer_dump_load_strategy,
)
@settings(deadline=1000)
def test_variable_serialize_deserialize(o, dump_load):
o_loaded = dump_load(o)
assert o_loaded == o

0 comments on commit 5874a89

Please sign in to comment.