(hq_env: HqEnv)
| 21 | |
| 22 | |
| 23 | def test_submit_empty_job(hq_env: HqEnv): |
| 24 | (job, client) = prepare_job_client(hq_env) |
| 25 | with pytest.raises(Exception, match="Submitted job must have at least a single task"): |
| 26 | client.submit(job) |
| 27 | |
| 28 | |
| 29 | def test_submit_simple(hq_env: HqEnv): |
nothing calls this directly
no test coverage detected