Skip to content

Commit

Permalink
Remove duplicated print
Browse files Browse the repository at this point in the history
  • Loading branch information
FreddieAkeroyd authored Dec 21, 2024
1 parent 0d60bba commit 761a23c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions developer_support_script/check_build_stability.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def print_results(self) -> None:
percentage_aborted_builds, ERROR_THRESHOLD_PERCENTAGE, WARNING_THRESHOLD_PERCENTAGE
)
print(
f"{level}: Aborted builds [{percentage_aborted_builds:.0f}% ({percentage_aborted_builds})]"
f"{level}: Aborted builds [{percentage_aborted_builds:.0f}%]"
)

# Failures with no test report
Expand All @@ -200,7 +200,7 @@ def print_results(self) -> None:
WARNING_THRESHOLD_PERCENTAGE,
)
print(
f"{level}: Failed builds with no Test Report [{percentage_no_test_report_failures:.0f}% ({percentage_no_test_report_failures})]"
f"{level}: Failed builds with no Test Report [{percentage_no_test_report_failures:.0f}%]"
)

# Tests.
Expand All @@ -213,7 +213,7 @@ def print_results(self) -> None:
percentage_test_failure, ERROR_THRESHOLD_PERCENTAGE, WARNING_THRESHOLD_PERCENTAGE
)
print(
f"{level}: [{percentage_test_failure:.0f}% ({percentage_test_failure})] {name}"
f"{level}: [{percentage_test_failure:.0f}%] {name}"
)


Expand Down

0 comments on commit 761a23c

Please sign in to comment.