diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 26358a88a1d..85551ac71ae 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -72,6 +72,8 @@ def _CheckNnbdTestSync(input_api, output_api): files = [git_file.LocalPath() for git_file in input_api.AffectedTextFiles()] unsynchronized = [] for file in files: + if file.endswith('.status'): continue + for dir in DIRS: legacy_dir = "tests/{}_2/".format(dir) nnbd_dir = "tests/{}/".format(dir)