(hq_env: HqEnv)
| 27 | |
| 28 | |
| 29 | def test_submit_simple(hq_env: HqEnv): |
| 30 | (job, client) = prepare_job_client(hq_env) |
| 31 | |
| 32 | job.program(args=["uname"]) |
| 33 | submitted_job = client.submit(job) |
| 34 | |
| 35 | wait_for_job_state(hq_env, submitted_job.id, "FINISHED") |
| 36 | |
| 37 | |
| 38 | def test_submit_cwd(hq_env: HqEnv): |
nothing calls this directly
no test coverage detected