diff options
author | Paulo E. Castro <pecastro@wormholenet.com> | 2021-04-04 17:47:03 +0100 |
---|---|---|
committer | Paulo E. Castro <pecastro@wormholenet.com> | 2021-04-28 22:31:37 +0100 |
commit | 0df5f1c5cfca361c316a430ab52e26930ce097e4 (patch) | |
tree | 0dc8eda5ef876452277345d3139564807cd701c2 /etc | |
parent | 03b3d677f0f912ad8e0f239ecda66faa28a8cc60 (diff) | |
download | servo-0df5f1c5cfca361c316a430ab52e26930ce097e4.tar.gz servo-0df5f1c5cfca361c316a430ab52e26930ce097e4.zip |
Comment TaskCluster wpt tests
Diffstat (limited to 'etc')
-rw-r--r-- | etc/taskcluster/decision_task.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 10ad08cbeac..eeb704341cd 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -37,10 +37,10 @@ def tasks(task_for): windows_arm64, windows_uwp_x64, macos_unit, - linux_wpt, - linux_wpt_layout_2020, + # linux_wpt, + # linux_wpt_layout_2020, linux_release, - macos_wpt, + # macos_wpt, ] by_branch_name = { "auto": all_tests, @@ -60,9 +60,10 @@ def tasks(task_for): "try-linux": [linux_tidy_unit, linux_docs_check, linux_release], "try-windows": [windows_unit, windows_arm64, windows_uwp_x64], "try-arm": [windows_arm64], - "try-wpt": [linux_wpt], + "try-wpt": [], "try-wpt-2020": [linux_wpt_layout_2020], - "try-wpt-mac": [macos_wpt], + "try-wpt-mac": [], + "test-wpt": [], } by_branch_name["try-windows-rdp"] = [ functools.partial(f, rdp=True) for f in by_branch_name["try-windows"] |