From 1ed2ae45f59c2864ea05838b4da2750b85472824 Mon Sep 17 00:00:00 2001 From: borenet Date: Tue, 26 Jul 2016 11:52:17 -0700 Subject: Move Skia recipes from build repo BUG=skia:5563 GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2175373002 Review-Url: https://codereview.chromium.org/2175373002 --- PRESUBMIT.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'PRESUBMIT.py') diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 1412b2b95f..a3af9e4445 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -169,6 +169,19 @@ def _ToolFlags(input_api, output_api): return results +def _RecipeSimulationTest(input_api, output_api): + """Run the recipe simulation test.""" + results = [] + recipes_py = os.path.join('infra', 'bots', 'recipes.py') + cmd = ['python', recipes_py, 'simulation_test'] + try: + subprocess.check_output(cmd) + except subprocess.CalledProcessError as e: + results.append(output_api.PresubmitError( + '`%s` failed:\n%s' % (' '.join(cmd), e.output))) + return results + + def _CommonChecks(input_api, output_api): """Presubmit checks common to upload and commit.""" results = [] @@ -202,6 +215,9 @@ def CheckChangeOnUpload(input_api, output_api): """ results = [] results.extend(_CommonChecks(input_api, output_api)) + # Run on upload, not commit, since the presubmit bot apparently doesn't have + # coverage installed. + results.extend(_RecipeSimulationTest(input_api, output_api)) return results -- cgit v1.2.3