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

Unified Diff: git_cl.py

Issue 1587893003: git cl try: omit triggered bots from cq.cfg default list (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Review Created 4 years, 11 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 | « commit_queue.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index e99509f1954776fc31fdf2996b0d18b7a9b234eb..ac74c2b846c0d48045b3729acec6b07f01a7c772 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -3215,7 +3215,8 @@ def CMDtry(parser, args):
'infra', 'config', 'cq.cfg')
if os.path.exists(cq_cfg):
masters = {}
- cq_masters = commit_queue.get_master_builder_map(cq_cfg)
+ cq_masters = commit_queue.get_master_builder_map(
+ cq_cfg, include_experimental=False, include_triggered=False)
for master, builders in cq_masters.iteritems():
for builder in builders:
# Skip presubmit builders, because these will fail without LGTM.
« no previous file with comments | « commit_queue.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698