Lines Matching +full:pylint +full:- +full:exit
9 # /usr/bin/env: 'python -u': No such file or directory
11 # This little shell hack is a triple-quoted noop in python, but in sh it
12 # evaluates to re-exec'ing this script in unbuffered mode.
13 # pylint: disable=pointless-string-statement
14 ''''exec python -u -- "$0" ${1+"$@"} # '''
22 This is a copy of https://chromium.googlesource.com/infra/luci/recipes-py/+/master/recipes.py.
26 # pylint: disable=wrong-import-position
39 # url (str) - the url to the engine repo we want to use.
40 # revision (str) - the git revision for the engine to get.
41 # branch (str) - the branch to fetch for the engine as an absolute ref (e.g.
57 repo_root (str) - native path to the root of the repo we're trying to run
59 recipes_cfg_path (str) - native path to the recipes.cfg file to process.
64 recipes_path (str) - native path to where the recipes live inside of the
146 * an override for the recipe engine in the form of `-O recipe_engine=/path`
147 * the --package option.
152 p.add_argument('-O', '--project-override', action='append')
153 p.add_argument('--package', type=os.path.abspath)
184 _git_check_call(['rev-parse', '--verify',
196 _git_check_call(['diff', '--quiet', revision], cwd=engine_path)
198 _git_check_call(['reset', '-q', '--hard', revision], cwd=engine_path)
202 _git_check_call(['clean', '-qxf'], cwd=engine_path)
212 if '--verbose' in sys.argv:
225 _git_output(['rev-parse', '--show-toplevel'],
229 args = ['--package', recipes_cfg_path] + args
235 [VPYTHON, '-u',
242 sys.exit(main())