diff --git a/framework/python/src/common/testreport.py b/framework/python/src/common/testreport.py index 17fcc5a0f..3cf661832 100644 --- a/framework/python/src/common/testreport.py +++ b/framework/python/src/common/testreport.py @@ -423,9 +423,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'''