From d480f0e2878ae0bb94d5ef4fb42b3a56cb4629c0 Mon Sep 17 00:00:00 2001 From: Andi-Bogdan Postelnicu Date: Mon, 9 Dec 2019 15:23:12 +0000 Subject: [PATCH] Bug 1598485 - Exclude files that are not part of the nss repository from the analysis artifact. r=jcj Differential Revision: https://phabricator.services.mozilla.com/D55963 --HG-- extra : moz-landing-system : lando --- mach | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mach b/mach index feae103f92..b484e1fa4b 100755 --- a/mach +++ b/mach @@ -244,6 +244,9 @@ class coverityAction(argparse.Action): print('Skipping CID: {0} from file: {1} since it\'s not related with the current patch.'.format( issue['stateOnServer']['cid'], issue['strippedMainEventFilePathname'])) continue + # If path does not start with `cwd` skip it + if not path.startswith(cwd): + continue path = relpath(path) if path in files_list: files_list[path]['warnings'].append(build_element(issue))