()
| 214 | |
| 215 | |
| 216 | def test_run_command_sync_exception(): |
| 217 | with pytest.raises(RuntimeError, match="Command failure"): |
| 218 | run_command_sync( |
| 219 | failing_async_command, |
| 220 | "dummy.json", |
| 221 | ["Sync"], |
| 222 | extra_params={}, |
| 223 | ) |
| 224 | assert _ALL_TM[0].closed |
nothing calls this directly
no test coverage detected