()
| 112 | |
| 113 | |
| 114 | def test_call_async_from_sync_error(): |
| 115 | async def dummy(value: int): |
| 116 | raise ValueError() |
| 117 | |
| 118 | with pytest.raises(ValueError): |
| 119 | call_async_from_sync(dummy, 0, 3) |
| 120 | |
| 121 | |
| 122 | def test_call_async_from_sync_background_tasks(): |
nothing calls this directly
no test coverage detected