@@ -563,19 +563,19 @@ def print_statistics(app: Application, suite: TestSuite, collector: Collector) -
563563 def print () -> Iterable [str ]:
564564 yield click .style ("Statistics:" , underline = True , fg = "blue" )
565565 yield os .linesep
566- yield click .style (" - Suites: " , underline = True , bold = True , fg = "blue" )
566+ yield click .style (" - Suites: " , bold = True , fg = "blue" )
567567 yield f"{ collector .statistics .suites } { os .linesep } "
568568 if collector .statistics .suites_with_tests :
569- yield click .style (" - Suites with tests: " , underline = True , bold = True , fg = "blue" )
569+ yield click .style (" - Suites with tests: " , bold = True , fg = "blue" )
570570 yield f"{ collector .statistics .suites_with_tests } { os .linesep } "
571571 if collector .statistics .suites_with_tasks :
572- yield click .style (" - Suites with tasks: " , underline = True , bold = True , fg = "blue" )
572+ yield click .style (" - Suites with tasks: " , bold = True , fg = "blue" )
573573 yield f"{ collector .statistics .suites_with_tasks } { os .linesep } "
574574 if collector .statistics .tests :
575- yield click .style (" - Tests: " , underline = True , bold = True , fg = "blue" )
575+ yield click .style (" - Tests: " , bold = True , fg = "blue" )
576576 yield f"{ collector .statistics .tests } { os .linesep } "
577577 if collector .statistics .tasks :
578- yield click .style (" - Tasks: " , underline = True , bold = True , fg = "blue" )
578+ yield click .style (" - Tasks: " , bold = True , fg = "blue" )
579579 yield f"{ collector .statistics .tasks } { os .linesep } "
580580
581581 app .echo_via_pager (print ())
0 commit comments