forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPRESUBMIT.py
32 lines (23 loc) · 929 Bytes
/
PRESUBMIT.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Presubmit for android_webview/tools."""
def CommonChecks(input_api, output_api):
"""Presubmit checks run on both upload and commit.
This is currently limited to pylint.
"""
checks = []
checks.extend(input_api.canned_checks.GetPylint(
input_api, output_api, pylintrc='pylintrc',
# TODO: lint these and eliminate the blacklist.
black_list=[
r'webview_licenses.py',
r'webview_repack_locales.py',
]))
return input_api.RunTests(checks, False)
def CheckChangeOnUpload(input_api, output_api):
"""Presubmit checks on CL upload."""
return CommonChecks(input_api, output_api)
def CheckChangeOnCommit(input_api, output_api):
"""Presubmit checks on commit."""
return CommonChecks(input_api, output_api)