aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/tools/conftest.py
diff options
context:
space:
mode:
authorWPT Sync Bot <josh+wptsync@joshmatthews.net>2019-01-17 20:37:38 -0500
committerWPT Sync Bot <josh+wptsync@joshmatthews.net>2019-01-17 22:34:16 -0500
commit02c1eed9991623cfc2e282149ff2912c7092406b (patch)
treeae81466ea22f10ef18444c2b9adbdc2a5ec6e9d9 /tests/wpt/web-platform-tests/tools/conftest.py
parentfb95f9df9cab44afd66eae809af164637bd8f00a (diff)
downloadservo-02c1eed9991623cfc2e282149ff2912c7092406b.tar.gz
servo-02c1eed9991623cfc2e282149ff2912c7092406b.zip
Update web-platform-tests to revision 74bae78af4b95a2f0ca3a81df9c7fe3143f24bbc
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"))