Улучшение отчета для rack_coverage

This commit is contained in:
2026-07-18 01:00:02 +03:00
parent 7428bc251f
commit 32ac575178
2 changed files with 3 additions and 3 deletions

View File

@@ -69,6 +69,6 @@ class CoreCommand(BaseCommand):
""" """
p_len = len(str(value)) + len(name) + 2 p_len = len(str(value)) + len(name) + 2
points = "." * (length - p_len - 1) points = "." * (length - p_len)
print(f"{name}: {points} {value}") print(f"{name} {points} {value}")

View File

@@ -168,7 +168,7 @@ class Command(CoreCommand):
self._report_separator(double=False, last_new_line=False) self._report_separator(double=False, last_new_line=False)
if total_errors > 0: if total_errors > 0:
self._report_int_value("FAILE! Total number of errors", total_errors) self._report_int_value("FAIL! Total number of errors", total_errors)
self._report_separator(double=False, last_new_line=False) self._report_separator(double=False, last_new_line=False)
sys.exit(1) sys.exit(1)
else: else: