mirrored from https://chromium.googlesource.com/infra/luci/luci-py
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathPRESUBMIT.py
48 lines (36 loc) · 1.28 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
41
42
43
44
45
46
47
48
# Copyright 2012 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 swarm_client.
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
details on the presubmit API built into gcl.
"""
USE_PYTHON3 = True
def CommonChecks(input_api, output_api):
import sys
def join(*args):
return input_api.os_path.join(input_api.PresubmitLocalPath(), *args)
output = []
sys_path_backup = sys.path
try:
sys.path = [
input_api.PresubmitLocalPath(),
join('tests'),
join('third_party'),
] + sys.path
files_to_skip = list(input_api.DEFAULT_FILES_TO_SKIP) + [
r'.*_pb2\.py$',
]
output.extend(
input_api.canned_checks.RunPylint(input_api,
output_api,
files_to_skip=files_to_skip,
pylintrc=join('../', 'pylintrc')))
finally:
sys.path = sys_path_backup
return output
# pylint: disable=unused-argument
def CheckChangeOnUpload(input_api, output_api):
return []
def CheckChangeOnCommit(input_api, output_api):
return CommonChecks(input_api, output_api)