From 19cc74f07dd1028990e984ca31f6f84814d0f317 Mon Sep 17 00:00:00 2001 From: marmeladema Date: Tue, 24 Dec 2019 17:56:47 +0000 Subject: [PATCH] Run first test-wpt chunk with python3 in CI --- etc/taskcluster/decision_task.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 1032cd22d8c..1052702bf44 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -734,7 +734,13 @@ def wpt_chunks(platform, make_chunk_task, build_task, total_chunks, processes, if this_chunk == 0: task.with_script(""" ./mach test-wpt-failure - time ./mach test-wpt --release --binary-arg=--multiprocess \ + time python2 ./mach test-wpt --release --binary-arg=--multiprocess \ + --processes $PROCESSES \ + --log-raw test-wpt-mp.log \ + --log-errorsummary wpt-mp-errorsummary.log \ + eventsource \ + | cat + time env PYTHONIOENCODING=utf-8 python3 ./mach test-wpt --release --binary-arg=--multiprocess \ --processes $PROCESSES \ --log-raw test-wpt-mp.log \ --log-errorsummary wpt-mp-errorsummary.log \