From 1318a30f19cf6c531ab2bb9894619c3c9d3eaf6c Mon Sep 17 00:00:00 2001 From: Aaron Gable Date: Tue, 21 May 2019 21:46:07 +0000 Subject: [PATCH] Call new CheckJsonParses in PRESUBMIT I have verified that all JSON files currently in depot_tools pass this check. Change-Id: I8247653a8161adf69b20d0a837b9f7723936ade2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1620308 Reviewed-by: Sean McCullough Commit-Queue: Aaron Gable --- PRESUBMIT.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 63fdb9777..d0598591a 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -61,6 +61,8 @@ def CommonChecks(input_api, output_api, tests_to_black_list): results.extend(input_api.canned_checks.CheckOwners(input_api, output_api)) results.extend(input_api.canned_checks.CheckOwnersFormat( input_api, output_api)) + results.extend(input_api.canned_checks.CheckJsonParses( + input_api, output_api)) # Run only selected tests on Windows. tests_to_white_list = [r'.*test\.py$']