diff options
author | bors-servo <servo-ops@mozilla.com> | 2020-04-20 15:02:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 15:02:26 -0400 |
commit | 4c8413d532ecd4bcd96e1a0b9649cfa9707677c4 (patch) | |
tree | 800ab3a5c1bb67d9ae6e67eeddbf862bf24e9aab /etc/taskcluster/decision_task.py | |
parent | 4c4f5881785a293642d7c4a8a815f0411012e267 (diff) | |
parent | a3587e608eb6830bc36f63aa94329a94cf3c7542 (diff) | |
download | servo-4c8413d532ecd4bcd96e1a0b9649cfa9707677c4.tar.gz servo-4c8413d532ecd4bcd96e1a0b9649cfa9707677c4.zip |
Auto merge of #26229 - servo:jdm-patch-36, r=SimonSapin
Use python binary to run multiprocess tests.
The python2 binary doesn't exist in the path on macOS. This change uses an existing python2 on macOS and whatever the default python version is on linux.
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-rw-r--r-- | etc/taskcluster/decision_task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index b67defe5c46..4178e953cda 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -614,7 +614,7 @@ def wpt_chunks(platform, make_chunk_task, build_task, total_chunks, processes, # https://github.com/servo/servo/issues/22438 if this_chunk == 0: task.with_script(""" - time python2 ./mach test-wpt --release --binary-arg=--multiprocess \ + time python ./mach test-wpt --release --binary-arg=--multiprocess \ --processes $PROCESSES \ --log-raw test-wpt-mp.log \ --log-errorsummary wpt-mp-errorsummary.log \ |