Add "--push-to-vcs" argument when invoking "mach try".

"mach try" is going to submit changes for Lando by default soon and we want
to keep pushing directly to VCS.
This commit is contained in:
Alexandra Borovova 2024-10-11 17:25:37 +02:00 коммит произвёл jgraham
Родитель 38eaff2e9d
Коммит 9a69f82990
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -188,6 +188,9 @@ class TryFuzzyCommit(TryCommit):
else:
args.append("--no-artifact")
# --push-to-vcs is required to push directly to hgmo
args.append("--push-to-vcs")
if self.tests_by_type is not None:
paths = []
all_paths = set()

Просмотреть файл

@ -72,7 +72,8 @@ def test_land_try(env, git_gecko, git_wpt, git_wpt_upstream, pull_request, set_p
"-q",
"web-platform-tests mac !debug shippable",
"--disable-target-task-filter",
"--artifact")
"--artifact",
"--push-to-vcs")
def test_land_commit(env, git_gecko, git_wpt, git_wpt_upstream, pull_request, set_pr_status,