From 10490a12f13f03495e0945eb9d45d7aed9ab0a6c Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 18 Feb 2017 15:45:06 +0100 Subject: [PATCH] Unconditionally disable HealthCheck.too_slow --- tests/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index e0a07d5..3afd7cd 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -26,10 +26,12 @@ except ImportError: else: del pytest_benchmark + +settings.suppress_health_check = [HealthCheck.too_slow] + settings.register_profile("ci", settings( max_examples=1000, verbosity=Verbosity.verbose, - suppress_health_check=[HealthCheck.too_slow] )) settings.register_profile("deterministic", settings( derandomize=True,