mirrored from https://chromium.googlesource.com/infra/luci/luci-py
-
Notifications
You must be signed in to change notification settings - Fork 36
/
PRESUBMIT.py
40 lines (31 loc) · 1.32 KB
/
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
32
33
34
35
36
37
38
39
40
# Copyright 2013 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
"""Top-level presubmit script for appengine/components/.
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
details on the presubmit API built into gclient.
"""
USE_PYTHON3 = True
def CommonChecks(input_api, output_api):
files_to_skip = list(input_api.DEFAULT_FILES_TO_SKIP) + [
r'.*_pb2\.py$',
]
disabled_warnings = [
'chained-comparison',
'cyclic-import',
'keyword-arg-before-vararg',
'relative-import',
'unused-argument',
]
return input_api.canned_checks.RunPylint(input_api,
output_api,
files_to_skip=files_to_skip,
disabled_warnings=disabled_warnings,
pylintrc=input_api.os_path.join(
input_api.PresubmitLocalPath(),
'../../', 'pylintrc'))
# pylint: disable=unused-argument
def CheckChangeOnUpload(input_api, output_api):
return []
def CheckChangeOnCommit(input_api, output_api):
return CommonChecks(input_api, output_api)