@@ -281,30 +281,30 @@ def print_numerical_summary(project_stats):
281
281
report .info ("NUMERICAL SUMMARY - TOTAL COUNTS" )
282
282
report .info (f"{ '=' * 80 } " )
283
283
284
- report .info (f "\n OVERALL TOTALS:" )
284
+ report .info ("\n OVERALL TOTALS:" )
285
285
report .info (f" Total Suites: { project_stats ['total_suites' ]} " )
286
286
report .info (f" Total Test Cases: { project_stats ['total_cases' ]} " )
287
287
288
288
if project_stats ["total_cases" ] == 0 :
289
289
return
290
290
291
- report .info (f "\n SUB TEST SUITE TOTALS:" )
291
+ report .info ("\n SUB TEST SUITE TOTALS:" )
292
292
total_by_sub_suite = sorted (
293
293
project_stats ["by_sub_test_suite" ].items (), key = lambda x : x [1 ], reverse = True
294
294
)
295
295
for sub_suite , count in total_by_sub_suite :
296
296
percentage = (count / project_stats ["total_cases" ]) * 100
297
297
report .info (f" { sub_suite :30} : { count :6} cases ({ percentage :5.1f} %)" )
298
298
299
- report .info (f "\n AUTOMATION STATUS TOTALS:" )
299
+ report .info ("\n AUTOMATION STATUS TOTALS:" )
300
300
total_by_status = sorted (
301
301
project_stats ["by_automation_status" ].items (), key = lambda x : x [1 ], reverse = True
302
302
)
303
303
for status , count in total_by_status :
304
304
percentage = (count / project_stats ["total_cases" ]) * 100
305
305
report .info (f" { status :20} : { count :6} cases ({ percentage :5.1f} %)" )
306
306
307
- report .info (f "\n AUTOMATION COVERAGE TOTALS:" )
307
+ report .info ("\n AUTOMATION COVERAGE TOTALS:" )
308
308
total_by_coverage = sorted (
309
309
project_stats ["by_automation_coverage" ].items (),
310
310
key = lambda x : x [1 ],
@@ -434,7 +434,7 @@ def main():
434
434
report .info (f"{ '=' * 80 } " )
435
435
report .info (f" Analyzed { project_stats ['total_suites' ]} suites" )
436
436
report .info (f" Processed { project_stats ['total_cases' ]} test cases" )
437
- report .info (f " Generated detailed statistics and breakdowns" )
437
+ report .info (" Generated detailed statistics and breakdowns" )
438
438
else :
439
439
op_log .error (" Analysis failed!" )
440
440
0 commit comments