Skip to content

Commit

Permalink
refine clone test limits
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Mar 3, 2024
1 parent b72137a commit c507d0d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,14 @@ def func(foo):

@given(
st.one_of(
st.lists(st.floats(allow_nan=False)),
st.tuples(st.floats(allow_nan=False)),
st.integers(),
st.floats(allow_nan=False),
st.lists(st.floats(allow_nan=False), max_size=100),
st.tuples(st.floats(allow_nan=False)),
st.tuples(st.floats(allow_nan=False), st.floats(allow_nan=False)),
st.tuples(
st.floats(allow_nan=False), st.floats(allow_nan=False), st.floats(allow_nan=False)
),
st.emails(),
)
)
Expand Down

0 comments on commit c507d0d

Please sign in to comment.