Comment TaskCluster wpt tests

This commit is contained in:
Paulo E. Castro 2021-04-04 17:47:03 +01:00
parent 03b3d677f0
commit 0df5f1c5cf
No known key found for this signature in database
GPG key ID: 732E6D35F6EC7D88

View file

@ -37,10 +37,10 @@ def tasks(task_for):
windows_arm64, windows_arm64,
windows_uwp_x64, windows_uwp_x64,
macos_unit, macos_unit,
linux_wpt, # linux_wpt,
linux_wpt_layout_2020, # linux_wpt_layout_2020,
linux_release, linux_release,
macos_wpt, # macos_wpt,
] ]
by_branch_name = { by_branch_name = {
"auto": all_tests, "auto": all_tests,
@ -60,9 +60,10 @@ def tasks(task_for):
"try-linux": [linux_tidy_unit, linux_docs_check, linux_release], "try-linux": [linux_tidy_unit, linux_docs_check, linux_release],
"try-windows": [windows_unit, windows_arm64, windows_uwp_x64], "try-windows": [windows_unit, windows_arm64, windows_uwp_x64],
"try-arm": [windows_arm64], "try-arm": [windows_arm64],
"try-wpt": [linux_wpt], "try-wpt": [],
"try-wpt-2020": [linux_wpt_layout_2020], "try-wpt-2020": [linux_wpt_layout_2020],
"try-wpt-mac": [macos_wpt], "try-wpt-mac": [],
"test-wpt": [],
} }
by_branch_name["try-windows-rdp"] = [ by_branch_name["try-windows-rdp"] = [
functools.partial(f, rdp=True) for f in by_branch_name["try-windows"] functools.partial(f, rdp=True) for f in by_branch_name["try-windows"]