Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(810)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py

Issue 2203923004: Add loop for triggering try bots in --auto-update flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
index 1b8ef05cf217c6107c54f84254a59564ed21d43a..b99b98c02f7853969991f6b6f1646e1bf363acfd 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
@@ -76,7 +76,8 @@ class DepsUpdater(object):
self.print_('## Uploading change list.')
self.check_run(self.generate_upload_command(email_list))
self.print_('## Triggering try jobs.')
- self.run(['git', 'cl', 'try'] + ['-b ' + try_bot for try_bot in try_bots])
+ for try_bot in try_bots:
+ self.run(['git', 'cl', 'try', '-b', try_bot])
self.print_('## Waiting for Try Job Results')
if self.has_failing_results():
self.write_test_expectations()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698