Skip to content

Commit 17cd73f

Browse files
alimcmaster1jreback
authored andcommitted
Set hypothesis healthcheck (#22597)
1 parent e6843c4 commit 17cd73f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/conftest.py

Lines changed: 5 additions & 0 deletions
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)