(job_id)
| 563 | |
| 564 | |
| 565 | def groups(job_id): |
| 566 | with open(default_task_output(job_id)) as f: |
| 567 | data = [int(x) // 10 for x in f.read().rstrip().split(",")] |
| 568 | c = collections.Counter(data) |
| 569 | return sorted(c.values()) |
| 570 | |
| 571 | |
| 572 | def test_tight_vs_compact_policy(hq_env: HqEnv): |
no test coverage detected