From a3708cd11269bd87b4301fef1e9095031875d7a1 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Strub Date: Wed, 15 Jan 2025 20:23:05 +0100 Subject: [PATCH] runtest: ignore Emacs lock files (.#XXX) --- scripts/testing/runtest | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/testing/runtest b/scripts/testing/runtest index 263b94336..686434d3d 100755 --- a/scripts/testing/runtest +++ b/scripts/testing/runtest @@ -362,6 +362,7 @@ class Gather: aout.extend([os.path.join(root, x) for x in dnames]) else: aout.extend(glob.glob(x)) + aout = [x for x in aout if not x.startswith('.#')] return aout dirs = [for1(x) for x in re.split(r'\s+', dirs)]