From b35a1fa6a5308b32f06ed70dad8f5294a2bdc67e Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Mon, 16 Sep 2019 18:51:49 +0200 Subject: [PATCH] Run UI tests on PRs (#5011) --- automation/taskcluster/decision_task.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/automation/taskcluster/decision_task.py b/automation/taskcluster/decision_task.py index a6bdcb1df..dfaf987b7 100644 --- a/automation/taskcluster/decision_task.py +++ b/automation/taskcluster/decision_task.py @@ -38,6 +38,7 @@ def pr(builder): builder.craft_ktlint_task, builder.craft_lint_task, builder.craft_compare_locales_task, + builder.craft_ui_tests_task, ): tasks.append(craft_function()) @@ -46,12 +47,9 @@ def pr(builder): return tasks - -def push(builder): - all_tasks = pr(builder) - all_tasks.append(builder.craft_ui_tests_task()) - return all_tasks - +def push(): + # We want the same tasks on pushes than on PRs, for now. + return pr() def raptor(builder, is_staging): mozharness_task_id = fetch_mozharness_task_id()