We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9019582 commit 12bbac0Copy full SHA for 12bbac0
pandas/conftest.py
@@ -14,10 +14,12 @@
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
+ # them from 200ms to 500ms 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,
+ # if it really is slow add `@settings(deadline=...)` with a working value,
+ # or `deadline=None` to entirely disable timeouts for that test.
21
+ deadline=500,
22
+ timeout=hypothesis.unlimited,
23
suppress_health_check=(hypothesis.HealthCheck.too_slow,)
24
)
25
hypothesis.settings.load_profile("ci")
0 commit comments