Files
Python/scripts/validate_filenames.py

34 lines
1.1 KiB
Python
Raw Normal View History

#!python
2019-07-30 12:02:13 +02:00
import os
try:
from .build_directory_md import good_file_paths
except ImportError:
from build_directory_md import good_file_paths # type: ignore[no-redef]
2019-07-30 12:02:13 +02:00
filepaths = list(good_file_paths())
assert filepaths, "good_file_paths() failed!"
2019-07-30 12:02:13 +02:00
if upper_files := [file for file in filepaths if file != file.lower()]:
2019-07-30 12:02:13 +02:00
print(f"{len(upper_files)} files contain uppercase characters:")
print("\n".join(upper_files) + "\n")
if space_files := [file for file in filepaths if " " in file]:
2019-07-30 12:02:13 +02:00
print(f"{len(space_files)} files contain space characters:")
print("\n".join(space_files) + "\n")
if hyphen_files := [
file for file in filepaths if "-" in file and "/site-packages/" not in file
]:
2020-09-19 07:25:18 +02:00
print(f"{len(hyphen_files)} files contain hyphen characters:")
print("\n".join(hyphen_files) + "\n")
if nodir_files := [file for file in filepaths if os.sep not in file]:
2019-07-30 12:02:13 +02:00
print(f"{len(nodir_files)} files are not in a directory:")
print("\n".join(nodir_files) + "\n")
if bad_files := len(upper_files + space_files + hyphen_files + nodir_files):
2019-07-30 12:02:13 +02:00
import sys
2019-10-05 01:14:13 -04:00
2019-07-30 12:02:13 +02:00
sys.exit(bad_files)