Unconditionally disable HealthCheck.too_slow

This commit is contained in:
Markus Unterwaditzer 2017-02-18 15:45:06 +01:00
parent c73229e0a9
commit 10490a12f1

View file

@ -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,