(self, input: CommandInput)
| 94 | def test_slurm_queue_sbatch_additional_output(hq_env: HqEnv): |
| 95 | class Handler(CommandHandler): |
| 96 | async def handle_cli_submit(self, input: CommandInput) -> CommandOutput: |
| 97 | output = await super().handle_cli_submit(input) |
| 98 | return response( |
| 99 | f""" |
| 100 | No reservation for this job |
| 101 | --> Verifying valid submit host (login)...OK |
| 102 | --> Verifying valid jobname...OK |
| 103 | --> Verifying valid ssh keys...OK |
| 104 | --> Verifying access to desired queue (normal)...OK |
| 105 | --> Checking available allocation...OK |
| 106 | {output.stdout} |
| 107 | """ |
| 108 | ) |
| 109 | |
| 110 | with MockJobManager(hq_env, Handler(SlurmManagerFlavor().create_adapter())): |
| 111 | start_server_with_quick_refresh(hq_env) |
no test coverage detected