aboutsummaryrefslogtreecommitdiffstats
path: root/python/wpt/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/wpt/run.py')
-rw-r--r--python/wpt/run.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/wpt/run.py b/python/wpt/run.py
index e3fd3681790..021331064e0 100644
--- a/python/wpt/run.py
+++ b/python/wpt/run.py
@@ -73,6 +73,9 @@ def run_tests(**kwargs):
set_if_none(
kwargs, "host_cert_path", os.path.join(CERTS_PATH, "web-platform.test.pem")
)
+ # Set `id_hash` as the default chunk, as this better distributes testing across different
+ # chunks and leads to more consistent timing on GitHub Actions.
+ set_if_none(kwargs, "chunk_type", "id_hash")
kwargs["user_stylesheets"].append(os.path.join(SERVO_ROOT, "resources", "ahem.css"))