Lines Matching refs:errors
140 self.errors: Counters = Counters()
178 self.errors.add_counter(reason)
182 self.errors.counters[reason].subcounters.add_counter(error_key, test_identifier)
186 self.errors.add_counter(reason)
190 self.errors.counters[reason].subcounters.add_counter(error_key, test_identifier)
193 self.errors.add_counter(ts_reason)
200 self.errors.counters[ts_reason].subcounters.add_counter(tc_reason, test_identifier)
202 if not self.errors.counters[ts_reason].has_subcounters():
203 self.errors.counters[ts_reason].tests.append(test_identifier)
249 self.errors.sort_by_quantity()
275 self.errors.add_counter(key, test_identifier)
280 self.errors.add_counter(key, test_identifier)
326 def summary_with_most_common_errors(errors: Counters, limit: int = 15):
328 for key, value in errors.get_most_common(n=limit).items():
353 {'status': reports.status, 'platforms': reports.platforms, 'errors': reports.errors},
360 if not reports.errors.counters:
369 reports.errors.print_counters()
371 summary_with_most_common_errors(reports.errors)
374 dump_to_csv(args.output_csv, reports.errors)
376 dump_markdown_table(args.output_md, reports.errors, max_depth=2)