@@ -563,19 +563,19 @@ def print_statistics(app: Application, suite: TestSuite, collector: Collector) -
563
563
def print () -> Iterable [str ]:
564
564
yield click .style ("Statistics:" , underline = True , fg = "blue" )
565
565
yield os .linesep
566
- yield click .style (" - Suites: " , underline = True , bold = True , fg = "blue" )
566
+ yield click .style (" - Suites: " , bold = True , fg = "blue" )
567
567
yield f"{ collector .statistics .suites } { os .linesep } "
568
568
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" )
570
570
yield f"{ collector .statistics .suites_with_tests } { os .linesep } "
571
571
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" )
573
573
yield f"{ collector .statistics .suites_with_tasks } { os .linesep } "
574
574
if collector .statistics .tests :
575
- yield click .style (" - Tests: " , underline = True , bold = True , fg = "blue" )
575
+ yield click .style (" - Tests: " , bold = True , fg = "blue" )
576
576
yield f"{ collector .statistics .tests } { os .linesep } "
577
577
if collector .statistics .tasks :
578
- yield click .style (" - Tasks: " , underline = True , bold = True , fg = "blue" )
578
+ yield click .style (" - Tasks: " , bold = True , fg = "blue" )
579
579
yield f"{ collector .statistics .tasks } { os .linesep } "
580
580
581
581
app .echo_via_pager (print ())
0 commit comments