From 855be48b02893e3838a8301316bd8788a70de3d2 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 8 Sep 2023 19:16:26 +0200 Subject: Fix lint --- tests/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index d0edc0600..da3be32b1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -47,9 +47,10 @@ hypothesis.settings.register_profile( hypothesis.settings.register_profile( 'ci', hypothesis.settings( deadline=None, - suppress_health_check= + suppress_health_check=( suppressed_health_checks + [hypothesis.HealthCheck.too_slow], + ) ) ) hypothesis.settings.load_profile('ci' if testutils.ON_CI else 'default') -- cgit v1.2.3-54-g00ecf