From ee6947789010d6eb1340497283e3cc51d22305c8 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 25 Jun 2020 14:18:34 +0200 Subject: [PATCH] Rename Python scripts to use '_' and not '-' You can't import a Python script whose name includes '-'. Signed-off-by: Gilles Peskine --- tests/scripts/all.sh | 4 ++-- tests/scripts/{check-files.py => check_files.py} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/scripts/{check-files.py => check_files.py} (100%) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index c3ec896eb..d831d344c 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -664,8 +664,8 @@ component_check_doxy_blocks () { } component_check_files () { - msg "test: check-files.py" # < 1s - record_status tests/scripts/check-files.py + msg "Check: file sanity checks (permissions, encodings)" # < 1s + record_status tests/scripts/check_files.py } component_check_changelog () { diff --git a/tests/scripts/check-files.py b/tests/scripts/check_files.py similarity index 100% rename from tests/scripts/check-files.py rename to tests/scripts/check_files.py