Lines Matching refs:counters
79 counters: dict[str, TestCollection] = field(default_factory=dict) variable in Counters
82 self.counters[key] = self.counters.get(key, TestCollection())
83 self.counters[key].append(test)
86 for key, value in self.counters.items():
92 self.counters = dict(
93 sorted(self.counters.items(), key=lambda item: item[1].quantity, reverse=True)
95 for value in self.counters.values():
100 for key, value in self.counters.items():
112 for key, value in self.counters.items():
134 return bool(self.subcounters.counters)
160 self.status.counters[ts_status].subcounters.add_counter(tc_status)
182 self.errors.counters[reason].subcounters.add_counter(error_key, test_identifier)
190 self.errors.counters[reason].subcounters.add_counter(error_key, test_identifier)
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)
360 if not reports.errors.counters:
363 if args.platforms and reports.platforms.counters: