diff options
author | tanishka <109246904+taniishkaaa@users.noreply.github.com> | 2024-10-29 00:26:26 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-28 18:56:26 +0000 |
commit | 884732dfb25ab8969234c1ec1ef2009b93517974 (patch) | |
tree | e3f78af921be00b4b23858dd992b78921ba19e3f | |
parent | d3e0efbc21cc4480a4779be36c8a4268e3939cbc (diff) | |
download | servo-884732dfb25ab8969234c1ec1ef2009b93517974.tar.gz servo-884732dfb25ab8969234c1ec1ef2009b93517974.zip |
mach try: Remove `wpt-2013` from `full` and `wpt` (#34048)
* Remove wpt-2013 from full and wpt
Signed-off-by: taniishkaaa <tanishkasingh2004@gmail.com>
* Keep layout2020 without unit_tests
Signed-off-by: taniishkaaa <tanishkasingh2004@gmail.com>
---------
Signed-off-by: taniishkaaa <tanishkasingh2004@gmail.com>
-rw-r--r-- | python/servo/try_parser.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/python/servo/try_parser.py b/python/servo/try_parser.py index 66422743997..b49ede6e680 100644 --- a/python/servo/try_parser.py +++ b/python/servo/try_parser.py @@ -83,11 +83,9 @@ def handle_preset(s: str) -> Optional[JobConfig]: return JobConfig("MacOS", Workflow.MACOS, unit_tests=True) elif s in ["win", "windows"]: return JobConfig("Windows", Workflow.WINDOWS, unit_tests=True) - elif s in ["wpt", "linux-wpt"]: - return JobConfig("Linux WPT", Workflow.LINUX, unit_tests=True, wpt_layout=Layout.all()) elif s in ["wpt-2013", "linux-wpt-2013"]: return JobConfig("Linux WPT", Workflow.LINUX, wpt_layout=Layout.layout2013) - elif s in ["wpt-2020", "linux-wpt-2020"]: + elif s in ["wpt-2020", "linux-wpt-2020", "wpt", "linux-wpt"]: return JobConfig("Linux WPT", Workflow.LINUX, wpt_layout=Layout.layout2020) elif s in ["mac-wpt", "wpt-mac"]: return JobConfig("MacOS WPT", Workflow.MACOS, wpt_layout=Layout.all()) @@ -189,9 +187,9 @@ class TestParser(unittest.TestCase): { "name": "Linux WPT", "workflow": "linux", - "wpt_layout": "all", + "wpt_layout": "2020", "profile": "release", - "unit_tests": True, + "unit_tests": False, "wpt_args": "" }, { |