(*args, **kwargs)
| 47 | job.cancel_requested = True |
| 48 | |
| 49 | def cancel(*args, **kwargs): |
| 50 | raise JobCancelled() |
| 51 | |
| 52 | with patch("app.pipeline.runner._run_blocking", side_effect=cancel): |
| 53 | await run_pipeline(job, "https://www.youtube.com/watch?v=dQw4w9WgXcQ", tmp_path) |
nothing calls this directly
no test coverage detected