(self, error)
| 89 | self.actual_failures += 1 |
| 90 | |
| 91 | async def _fail_inf(self, error): |
| 92 | self.actual_failures += 1 |
| 93 | if self.actual_failures == 5: |
| 94 | raise ConnectionError() |
| 95 | |
| 96 | @pytest.mark.parametrize("retries", range(10)) |
| 97 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected