(self)
| 748 | return dict(dist) |
| 749 | |
| 750 | def retry_distribution(self) -> Dict[int, int]: |
| 751 | with self._lock: |
| 752 | dist: Dict[int, int] = defaultdict(int) |
| 753 | for r in self._records: |
| 754 | dist[r.attempt] += 1 |
| 755 | return dict(dist) |
| 756 | |
| 757 | def pass_rate(self) -> float: |
| 758 | with self._lock: |
nothing calls this directly
no outgoing calls
no test coverage detected