From e56ea435f0102593fa914ab018f0f01a25660213 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 26 Jun 2017 11:48:46 -0700 Subject: [PATCH] Skip dependency check for deleted files. (#26112) --- test/runner/lib/classification.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/runner/lib/classification.py b/test/runner/lib/classification.py index ffecf0d55a..d639fb65b7 100644 --- a/test/runner/lib/classification.py +++ b/test/runner/lib/classification.py @@ -43,6 +43,9 @@ def categorize_changes(paths, verbose_command=None): additional_paths = set() for path in paths: + if not os.path.exists(path): + continue + dependent_paths = mapper.get_dependent_paths(path) if not dependent_paths: