Skip to content

Commit bec7293

Browse files
committed
fix hypothesis.errors.FailedHealthCheck
1 parent 2405a07 commit bec7293

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/math/test_ecdf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import numpy as np
22
import pytest
33
from hypothesis import given
4+
from hypothesis import settings
45
from hypothesis.extra.pandas import series
56

67

78
@given(s=series(dtype=np.number))
9+
@settings(deadline=None)
810
def test_ecdf(s):
911
"""A simple execution test."""
1012
if s.isna().sum() > 0:

0 commit comments

Comments
 (0)