diff --git a/framework/python/src/common/testreport.py b/framework/python/src/common/testreport.py index 4feb27382..427d83793 100644 --- a/framework/python/src/common/testreport.py +++ b/framework/python/src/common/testreport.py @@ -428,9 +428,14 @@ def generate_footer(self, page_num): def generate_results(self, json_data, page_num): - result_list = ''' + successful_tests = 0 + for test in self._results: + if test['result'] != 'Error': + successful_tests += 1 + + result_list = f'''
-

Results List

+

Results List ({len(successful_tests)}/{self._total_tests})

Name
Description