diff --git a/.github/scripts/develocity_reports.py b/.github/scripts/develocity_reports.py index e5111072f47..43285a336fd 100644 --- a/.github/scripts/develocity_reports.py +++ b/.github/scripts/develocity_reports.py @@ -868,6 +868,12 @@ def main(): if not cleared_tests: print("No tests ready to be cleared from quarantine.") else: + # Print summary + print("") + for test_name, details in cleared_tests.items(): + print(f"") + print("
ClassTest CaseSuccess RateBuild Scans
{test_name}{details['success_rate']:.2%}{details['total_executions']}
") + for test_name, details in cleared_tests.items(): print(f"\n{test_name}") print(f"Success Rate: {details['success_rate']:.2%}")