Skip to content

Commit 1bfe0c4

Browse files
alimcmaster1aeltanawy
authored andcommitted
Set hypothesis healthcheck (pandas-dev#22597)
1 parent ec1f7eb commit 1bfe0c4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/conftest.py

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
from pandas.compat import PY3
1010
import pandas.util._test_decorators as td
1111

12+
import hypothesis
13+
hypothesis.settings.suppress_health_check = (hypothesis.HealthCheck.too_slow,)
14+
# HealthCheck.all() to disable all health checks
15+
# https://hypothesis.readthedocs.io/en/latest/healthchecks.html
16+
1217

1318
def pytest_addoption(parser):
1419
parser.addoption("--skip-slow", action="store_true",

0 commit comments

Comments
 (0)