Lines Matching refs:repo_root
59 def parse(repo_root, recipes_cfg_path):
63 repo_root (str) - native path to the root of the repo we're trying to run
108 recipes_path = os.path.join(repo_root,
171 def checkout_engine(engine_path, repo_root, recipes_cfg_path):
176 dep, recipes_path, py3_only = parse(repo_root, recipes_cfg_path)
179 return os.path.join(repo_root, recipes_path), py3_only
239 # calculate repo_root from recipes_cfg_path
240 repo_root = os.path.dirname(
243 # find repo_root with git and calculate recipes_cfg_path
244 repo_root = (
247 repo_root = os.path.abspath(repo_root).decode()
248 recipes_cfg_path = os.path.join(repo_root, 'infra', 'config', 'recipes.cfg')
250 engine_path, py3_only = checkout_engine(engine_override, repo_root, recipes_cfg_path)