blob: 2d77fc3ce65bc915b8b1e739ec272d61eb00e5ef [file] [log] [blame]
# 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)