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

Side by Side Diff: PRESUBMIT.py

Issue 23270003: Disable status tree check until we figure out what is wrong with dart-status.appspot.com (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« 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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 """Top-level presubmit script for Dart. 5 """Top-level presubmit script for Dart.
6 6
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
8 for more details about the presubmit API built into gcl. 8 for more details about the presubmit API built into gcl.
9 """ 9 """
10 10
11 def CheckChangeOnCommit(input_api, output_api): 11 def CheckChangeOnCommit(input_api, output_api):
12 results = [] 12 results = []
13 status_check = input_api.canned_checks.CheckTreeIsOpen( 13 status_check = input_api.canned_checks.CheckTreeIsOpen(
14 input_api, 14 input_api,
15 output_api, 15 output_api,
16 json_url='http://dart-status.appspot.com/current?format=json') 16 json_url='http://dart-status.appspot.com/current?format=json')
17 results.extend(status_check) 17 # TODO(ricow): reenable when status page is back in shape
18 # results.extend(status_check)
19 results.extend(True)
18 return results 20 return results
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