(count: int = 1)
| 422 | |
| 423 | |
| 424 | def prepare_localhost_nodefile(count: int = 1) -> str: |
| 425 | path = "nodefile.txt" |
| 426 | with open(path, "w") as f: |
| 427 | for _ in range(count): |
| 428 | print("localhost", file=f) |
| 429 | return path |
| 430 | |
| 431 | |
| 432 | def test_worker_state_info(hq_env: HqEnv): |
no outgoing calls
no test coverage detected