summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-09-08 19:16:26 +0200
committerFlorian Bruhin <me@the-compiler.org>2023-09-08 19:16:26 +0200
commit855be48b02893e3838a8301316bd8788a70de3d2 (patch)
tree826731d646ec038b74ebb00b8cdc34c3cf2384c9
parent3fabc8fe37d48910f252a0f1dc125e3deec15325 (diff)
downloadqutebrowser-855be48b02893e3838a8301316bd8788a70de3d2.tar.gz
qutebrowser-855be48b02893e3838a8301316bd8788a70de3d2.zip
Fix lint
-rw-r--r--tests/conftest.py3
1 files changed, 2 insertions, 1 deletions
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')