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

Side by Side Diff: infra/PRESUBMIT.py

Issue 2585583007: Remove recipes.py and friends from chromium/src (for now). (Closed)
Patch Set: Remove presubmit too Created 4 years 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 | infra/README.md » ('j') | 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 2016 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 def CommonChecks(input_api, output_api):
6 results = []
7
8 results.extend(input_api.RunTests(
9 input_api.canned_checks.GetUnitTestsInDirectory(
10 input_api,
11 output_api,
12 input_api.os_path.join('unittests'),
13 whitelist=[r'.+_test\.py'])))
14
15 return results
16
17
18 CheckChangeOnUpload = CommonChecks
19 CheckChangeOnCommit = CommonChecks
OLDNEW
« no previous file with comments | « no previous file | infra/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698