(job_id)
| 155 | |
| 156 | def test_coupling_combined(hq_env: HqEnv): |
| 157 | def groups(job_id): |
| 158 | with open(default_task_output(job_id)) as f: |
| 159 | a, b = f.read().rstrip().split(";") |
| 160 | data1 = [int(x) // 10 for x in a.split(",")] |
| 161 | data2 = [int(x) // 10 for x in b.split(",")] |
| 162 | c1 = collections.Counter(data1) |
| 163 | c2 = collections.Counter(data2) |
| 164 | return sorted(c1.values()), sorted(c2.values()) |
| 165 | |
| 166 | hq_env.start_server() |
| 167 |
no test coverage detected