I have a number of unit tests that leverage a @composite
strategy that I wrote. The strategy is quite slow (it generates complex objects) and from time to time one of the tests fails the too_slow
health check. When that happens, I take a deep sigh and I add
@settings(suppress_health_check=(HealthCheck.too_slow,))
to the test.
Is there a way to suppress HealthCheck.too_slow
once and for all, for all the tests that use the slow strategy?