(path: str)
| 343 | |
| 344 | |
| 345 | def ssh_code_dump_args_to_file(path: str) -> str: |
| 346 | return f""" |
| 347 | import json |
| 348 | import sys |
| 349 | |
| 350 | with open("{path}", "w") as f: |
| 351 | json.dump(sys.argv, f) |
| 352 | """ |
| 353 | |
| 354 | |
| 355 | def test_deploy_ssh_worker_command(hq_env: HqEnv): |
no outgoing calls
no test coverage detected