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.
1 parent e6843c4 commit 17cd73fCopy full SHA for 17cd73f
pandas/conftest.py
@@ -9,6 +9,11 @@
9
from pandas.compat import PY3
10
import pandas.util._test_decorators as td
11
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
+
17
18
def pytest_addoption(parser):
19
parser.addoption("--skip-slow", action="store_true",
0 commit comments