aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/tools/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/tools/conftest.py')
-rw-r--r--tests/wpt/web-platform-tests/tools/conftest.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/wpt/web-platform-tests/tools/conftest.py b/tests/wpt/web-platform-tests/tools/conftest.py
index 894fe6223ea..021a49fc297 100644
--- a/tests/wpt/web-platform-tests/tools/conftest.py
+++ b/tests/wpt/web-platform-tests/tools/conftest.py
@@ -6,8 +6,10 @@ from hypothesis import settings, HealthCheck
impl = platform.python_implementation()
settings.register_profile("ci", settings(max_examples=1000,
+ deadline=None,
suppress_health_check=[HealthCheck.too_slow]))
-settings.register_profile("pypy", settings(suppress_health_check=[HealthCheck.too_slow]))
+settings.register_profile("pypy", settings(deadline=None,
+ suppress_health_check=[HealthCheck.too_slow]))
settings.load_profile(os.getenv("HYPOTHESIS_PROFILE",
"default" if impl != "PyPy" else "pypy"))