feat/minteg #39

Merged
jkuhl merged 6 commits from feat/minteg into develop 2026-05-06 09:37:36 +02:00
Showing only changes of commit 3247cdbc40 - Show all commits

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

Justus Kuhlmann 2026-05-05 17:24:09 +02:00
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

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