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

Side by Side Diff: appengine/test_results/appengine_module/test_results/handlers/master_config.py

Issue 2080873002: Fix typo in test results config (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # FIXME: Master name is deprecated. Remove it once all the bots have stopped 5 # FIXME: Master name is deprecated. Remove it once all the bots have stopped
6 # uploading with that name. 6 # uploading with that name.
7 # 7 #
8 # FIXME: The concept of groups is being deprecated. Once it's removed from 8 # FIXME: The concept of groups is being deprecated. Once it's removed from
9 # the flakiness dashboard, this whole map can go away. 9 # the flakiness dashboard, this whole map can go away.
10 _masters = { 10 _masters = {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'client.webrtc': { 60 'client.webrtc': {
61 'name': 'WebRTC', 61 'name': 'WebRTC',
62 'groups': ['@ToT WebRTC'] 62 'groups': ['@ToT WebRTC']
63 }, 63 },
64 'tryserver.blink': { 64 'tryserver.blink': {
65 'name': 'BlinkTryServer', 65 'name': 'BlinkTryServer',
66 'groups': ['Unused'] 66 'groups': ['Unused']
67 }, 67 },
68 'tryserver.chromium.android': { 68 'tryserver.chromium.android': {
69 'name': 'TryserverChromiumAndroid', 69 'name': 'TryserverChromiumAndroid',
70 'group': ['Unused'], 70 'groups': ['Unused'],
71 }, 71 },
72 'tryserver.chromium.linux': { 72 'tryserver.chromium.linux': {
73 'name': 'TryServerChromiumLinux', 73 'name': 'TryServerChromiumLinux',
74 'groups': ['Unused'] 74 'groups': ['Unused']
75 }, 75 },
76 'tryserver.chromium.mac': { 76 'tryserver.chromium.mac': {
77 'name': 'TryServerChromiumMac', 77 'name': 'TryServerChromiumMac',
78 'groups': ['Unused'] 78 'groups': ['Unused']
79 }, 79 },
80 'tryserver.chromium.win': { 80 'tryserver.chromium.win': {
(...skipping 21 matching lines...) Expand all
102 def getMasterByMasterName(master_name): # pragma: no cover 102 def getMasterByMasterName(master_name): # pragma: no cover
103 url_name = _master_name_to_url_name.get(master_name) 103 url_name = _master_name_to_url_name.get(master_name)
104 if url_name: 104 if url_name:
105 return getMaster(url_name) 105 return getMaster(url_name)
106 return None 106 return None
107 107
108 108
109 def getAllMasters(): # pragma: no cover 109 def getAllMasters(): # pragma: no cover
110 for master in _masters: 110 for master in _masters:
111 yield getMaster(master) 111 yield getMaster(master)
OLDNEW
« 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