From abd8977cc15a460213afc72a02aeca778c3f2bfd Mon Sep 17 00:00:00 2001 From: Ryan Everett Date: Fri, 15 Dec 2023 12:28:38 +0000 Subject: [PATCH] Make check_files ignore png files in docs Signed-off-by: Ryan Everett --- tests/scripts/check_files.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/scripts/check_files.py b/tests/scripts/check_files.py index a2a9dfa8d0..a93b8256f0 100755 --- a/tests/scripts/check_files.py +++ b/tests/scripts/check_files.py @@ -105,6 +105,7 @@ class FileIssueTracker: BINARY_FILE_PATH_RE_LIST = [ r'docs/.*\.pdf\Z', + r'docs/.*\.png\Z', r'programs/fuzz/corpuses/[^.]+\Z', r'tests/data_files/[^.]+\Z', r'tests/data_files/.*\.(crt|csr|db|der|key|pubkey)\Z',