Skip to content

Commit

Permalink
runtest: ignore Emacs lock files (.#XXX)
Browse files Browse the repository at this point in the history
  • Loading branch information
strub committed Jan 15, 2025
1 parent dd06d28 commit a3708cd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/testing/runtest
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit a3708cd

Please sign in to comment.