(n_executions)
| 520 | task = self.tiger.delay(exception_task, retry_method=linear(DELAY, DELAY, 3)) |
| 521 | |
| 522 | def _run(n_executions): |
| 523 | Worker(self.tiger).run(once=True) |
| 524 | Worker(self.tiger).run(once=True) |
| 525 | assert task.n_executions() == n_executions |
| 526 | |
| 527 | _run(1) |
| 528 |
nothing calls this directly
no test coverage detected