(data)
| 88 | wait_for_job_state(hq_env, [1, 2], "FINISHED") |
| 89 | |
| 90 | def get_groups(data): |
| 91 | cpus, foos = (x.split(",") for x in data.rstrip().split(";")) |
| 92 | g = set() |
| 93 | for c in cpus: |
| 94 | g.add(int(c) // 4) |
| 95 | for f in foos: |
| 96 | g.add(int(f) // 50) |
| 97 | return g |
| 98 | |
| 99 | for i in range(1, 51): |
| 100 | with open(default_task_output(job_id=1, task_id=i), "r") as f: |
no test coverage detected