Skip to content

Commit 208706a

Browse files
committed
fix hypothesis.errors.FailedHealthCheck
1 parent 240acbf commit 208706a

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

tests/functions/test_case_when.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ def test_case_when_default_list_like(df):
201201

202202

203203
@given(df=categoricaldf_strategy())
204+
@settings(deadline=None)
204205
def test_case_when_default_index(df):
205206
"""
206207
Test case_when for scenarios where `default` is an index.

tests/functions/test_encode_categorical.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ def test_empty_col_sort(df):
234234

235235
@pytest.mark.functions
236236
@given(df=df_strategy())
237+
@settings(deadline=None)
237238
def test_empty_col_appearance(df):
238239
"""
239240
Raise ValueError if a string is provided,

tests/functions/test_expand_grid.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414

1515
@given(df=df_strategy())
16+
@settings(deadline=None)
1617
def test_others_not_dict(df):
1718
"""Raise Error if `others` is not a dictionary."""
1819
with pytest.raises(TypeError):

0 commit comments

Comments
 (0)