Skip to content

Commit

Permalink
Bug 1672949 [wpt PR 26252] - [Taskcluster] Switch wpt run on CI to Py…
Browse files Browse the repository at this point in the history
…thon 3 only, a=testonly

Automatic update from web-platform-tests
[Taskcluster] Switch wpt run on CI to Python 3 only (#26252)

See the RFC: web-platform-tests/rfcs#65

This affects:
* On push: Full test-suite runs.
* On pull-request:
    * The with-pr affected-results check.
    * The without-pr affected-results check.
    * The stability checks.
--

wpt-commits: 26c1676d2b6d7632f8de4ec3537896b3f45bd394
wpt-pr: 26252
  • Loading branch information
ziransun authored and moz-wptsync-bot committed Nov 30, 2020
1 parent 0fb5301 commit 2c5eabd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/web-platform/tests/tools/ci/taskcluster-run.py
Expand Up @@ -62,7 +62,7 @@ def main(product, channel, commit_range, wpt_args):
)
logger.addHandler(handler)

subprocess.call(['python', './wpt', 'manifest-download'])
subprocess.call(['python3', './wpt', 'manifest-download'])

if commit_range:
logger.info(
Expand All @@ -88,7 +88,7 @@ def main(product, channel, commit_range, wpt_args):
if product == "servo" and "--test-type=wdspec" in wpt_args:
wpt_args = [item for item in wpt_args if not item.startswith("--processes")]

command = ["python", "./wpt", "run"] + wpt_args + [product]
command = ["python3", "./wpt", "run"] + wpt_args + [product]

logger.info("Executing command: %s" % " ".join(command))
with open("/home/test/artifacts/checkrun.md", "a") as f:
Expand Down

0 comments on commit 2c5eabd

Please sign in to comment.