(x: object)
| 96 | |
| 97 | def test_initial_task_error() -> None: |
| 98 | async def main(x: object) -> NoReturn: |
| 99 | raise ValueError(x) |
| 100 | |
| 101 | with pytest.raises(ValueError, match=r"^17$") as excinfo: |
| 102 | _core.run(main, 17) |
nothing calls this directly
no test coverage detected
searching dependent graphs…