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: Robbie Iannucci <iannucci@chromium.org>
changes/50/442050/2
Stephen Martinis 8 years ago committed by Commit Bot
parent 112edbbb15
commit 014cb038b8

@ -12,7 +12,8 @@ import subprocess
ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
def recipes_py(*args): 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('simulation_test')
recipes_py('lint') recipes_py('lint')

Loading…
Cancel
Save