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

Side by Side Diff: remoting/PRESUBMIT.py

Issue 1177633002: Revert of Add simple presubmit check to remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 """Presubmit script for remoting.
6
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
8 for more details about the presubmit API built into depot_tools.
9 """
10
11 BROWSER_TEST_INSTRUCTIONS_LINK = (
12 "https://wiki.corp.google.com/twiki/bin/view/Main/ChromotingWaterfall#Runnin g_on_a_Swarming_bot.")
13
14
15 def CheckChangeOnUpload(input_api, output_api):
16 print "*******IMPORTANT NOTE*******"
17 print "Before committing, please run Remoting browser_tests."
18 print "Instructions: %s" % BROWSER_TEST_INSTRUCTIONS_LINK
19 print "Make sure all tests pass."
20 return []
21
22
23 def CheckChangeOnCommit(input_api, output_api):
24 """TODO(anandc): Run browser-tests on the Chromoting waterfall as part of
25 committing a CL. See http://crbug/498026"""
26 return []
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