We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54d621a commit e9f296aCopy full SHA for e9f296a
pandas/conftest.py
@@ -13,6 +13,11 @@
13
14
hypothesis.settings.register_profile(
15
"ci",
16
+ # Hypothesis timing checks are tuned for scalars by default, so we bump
17
+ # them from 200ms to 5 secs per test case as the global default. If this
18
+ # is too short for a specific test, (a) try to make it faster, and (b)
19
+ # if it really is slow add `@settings(timeout=...)` with a working value.
20
+ timeout=5000,
21
suppress_health_check=(hypothesis.HealthCheck.too_slow,)
22
)
23
hypothesis.settings.load_profile("ci")
0 commit comments