We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
hypothesis.errors.FailedHealthCheck
1 parent 2405a07 commit bec7293Copy full SHA for bec7293
tests/math/test_ecdf.py
@@ -1,10 +1,12 @@
1
import numpy as np
2
import pytest
3
from hypothesis import given
4
+from hypothesis import settings
5
from hypothesis.extra.pandas import series
6
7
8
@given(s=series(dtype=np.number))
9
+@settings(deadline=None)
10
def test_ecdf(s):
11
"""A simple execution test."""
12
if s.isna().sum() > 0:
0 commit comments