Alias for ``errors`` to mirror ``successes`` for symmetry.
(self)
| 44 | |
| 45 | @property |
| 46 | def failures(self) -> list[tuple[int, Exception]]: |
| 47 | """Alias for ``errors`` to mirror ``successes`` for symmetry.""" |
| 48 | return list(self.errors) |
| 49 | |
| 50 | |
| 51 | async def batch_run( |
nothing calls this directly
no outgoing calls
no test coverage detected