neater UX
All checks were successful
Mypy / mypy (push) Successful in 1m45s
Pytest / pytest (3.12) (push) Successful in 2m45s
Pytest / pytest (3.13) (push) Successful in 3m19s
Pytest / pytest (3.14) (push) Successful in 2m6s
Ruff / ruff (push) Successful in 3m34s

This commit is contained in:
Justus Kuhlmann 2026-05-05 17:24:09 +02:00
commit 3247cdbc40
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -215,16 +215,17 @@ def full_integrity_check(path: Path) -> None:
path: Path path: Path
Path to the backlog-library to check. Path to the backlog-library to check.
""" """
print("Run full integrity check...")
check_path_and_config(path) check_path_and_config(path)
print("Path and config-file exist:\t") print("(1/5) Path and config-file exist: ")
check_config_validity(path) check_config_validity(path)
print("Configuration is valid:\t") print("(2/5) Configuration is valid: ")
check_paths(path) check_paths(path)
print("Needed paths exist:\t") print("(3/5) Needed paths exist: ")
check_db_integrity(path) check_db_integrity(path)
print("DB:\t") print("(4/5) Database is sane: ")
check_db_file_links(path) check_db_file_links(path)
print("Links:\t") print("(5/5) DB2File and File2DB-links are sound: ")
print("Full:\t") print("Full integrity check: ")