1# Copyright (C) 2017 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15# This line is 'magic' in that git-cl looks for it to decide whether to 16# use Python3 instead of Python2 when running the code in this file. 17USE_PYTHON3 = True 18 19 20def CommonChecks(input_api, output_api): 21 presubmit_dir = input_api.PresubmitLocalPath() 22 recipes_py = input_api.os_path.join(presubmit_dir, 'recipes.py') 23 recipes_cfg = input_api.os_path.join( 24 presubmit_dir, '..', 'config', 'recipes.cfg' 25 ) 26 return input_api.RunTests([ 27 input_api.Command( 28 'Run recipe tests', 29 ['python3', recipes_py, '--package', recipes_cfg, 'test', 'run'], 30 {}, 31 output_api.PresubmitError, 32 ) 33 ]) 34 35 36def CheckChangeOnUpload(input_api, output_api): 37 return CommonChecks(input_api, output_api) 38 39 40def CheckChangeOnCommit(input_api, output_api): 41 return CommonChecks(input_api, output_api) 42