From 014cb038b8e3a22c90864c842d2c049d3e9637d4 Mon Sep 17 00:00:00 2001 From: Stephen Martinis Date: Mon, 13 Feb 2017 17:57:27 -0800 Subject: [PATCH] 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 Reviewed-by: Robbie Iannucci --- tests/recipes_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/recipes_test.py b/tests/recipes_test.py index 3bbf6bd39..052b1012e 100755 --- a/tests/recipes_test.py +++ b/tests/recipes_test.py @@ -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')