summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2019-12-04 17:26:42 +0100
committerFlorian Bruhin <me@the-compiler.org>2019-12-04 17:28:02 +0100
commitdad74b62e6ac5ada8c98c10ff8ad2e7017ba25cd (patch)
treefa2ba4ed8e62fa6a9f27279bf77151819c05b513 /tests/conftest.py
parenta817834919714716e8075859d842ee15995d17f6 (diff)
downloadqutebrowser-dad74b62e6ac5ada8c98c10ff8ad2e7017ba25cd.tar.gz
qutebrowser-dad74b62e6ac5ada8c98c10ff8ad2e7017ba25cd.zip
Revert "tests: Suppress hypothesis too_slow health check if on CI"
This reverts commit 8b480410d2de6bf7f5205e100ac5cdc88e2fa910. The underlying issue was hopefully fixed in hypothesis 4.48.1: https://hypothesis.readthedocs.io/en/latest/changes.html#v4-48-1
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 1d9165d38..d7e314c65 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -53,10 +53,7 @@ _qute_scheme_handler = None
hypothesis.settings.register_profile('default',
hypothesis.settings(deadline=600))
hypothesis.settings.register_profile('ci',
- hypothesis.settings(
- deadline=None,
- suppress_health_check=[
- hypothesis.HealthCheck.too_slow]))
+ hypothesis.settings(deadline=None))
hypothesis.settings.load_profile('ci' if testutils.ON_CI else 'default')