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

Side by Side Diff: tools/json_schema_compiler/PRESUBMIT.py

Issue 9865009: Run json_schema_compiler unit tests via a PRESUBMIT check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | tools/json_schema_compiler/code_test.py » ('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 (c) 2012 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 changes affecting tools/json_schema_compiler/
6
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
8 for more details about the presubmit API built into gcl.
9 """
10
11 UNIT_TESTS = [ './code_test.py', './cpp_type_generator_test.py',
12 './cpp_util_test.py', './model_test.py' ]
13
14 def CheckChangeOnUpload(input_api, output_api):
M-A Ruel 2012/03/27 00:42:05 Idea: you could use RunUnitTestsInDirectory with a
15 return input_api.canned_checks.RunUnitTests(input_api, output_api,
16 UNIT_TESTS)
17
18 def CheckChangeOnCommit(input_api, output_api):
19 return input_api.canned_checks.RunUnitTests(input_api, output_api,
20 UNIT_TESTS)
OLDNEW
« no previous file with comments | « no previous file | tools/json_schema_compiler/code_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698