From 761a23c7ab1f09ce1e261fb302d7a817a0d6f030 Mon Sep 17 00:00:00 2001 From: Freddie Akeroyd Date: Sat, 21 Dec 2024 14:20:29 +0000 Subject: [PATCH] Remove duplicated print --- developer_support_script/check_build_stability.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/developer_support_script/check_build_stability.py b/developer_support_script/check_build_stability.py index 3ae3f1f..1cda5f9 100644 --- a/developer_support_script/check_build_stability.py +++ b/developer_support_script/check_build_stability.py @@ -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 @@ -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. @@ -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}" )