Commit 014cb038 authored by Stephen Martinis's avatar Stephen Martinis Committed by Commit Bot

recipes_test.py: Use recipe bootstrap

This ensures coverage is installed, rather than depending on it being
installed in your system.

BUG=671189

Change-Id: Id9d7c514b4db53963381c5269bee06c706b23751
Reviewed-on: https://chromium-review.googlesource.com/442050
Commit-Queue: Stephen Martinis <martiniss@chromium.org>
Reviewed-by: 's avatarRobbie Iannucci <iannucci@chromium.org>
parent 112edbbb
......@@ -12,7 +12,8 @@ import subprocess
ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
def recipes_py(*args):
subprocess.check_call([os.path.join(ROOT_DIR, 'recipes.py')] + list(args))
subprocess.check_call([
os.path.join(ROOT_DIR, 'recipes.py'), '--use-bootstrap'] + list(args))
recipes_py('simulation_test')
recipes_py('lint')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment