(name, plus)
| 150 | |
| 151 | |
| 152 | def completeness_check(name, plus): |
| 153 | for task_id, task in plus.items(): |
| 154 | for key in [ |
| 155 | "prompt", |
| 156 | "contract", |
| 157 | "canonical_solution", |
| 158 | "base_input", |
| 159 | "plus_input", |
| 160 | "atol", |
| 161 | ]: |
| 162 | assert key in task, f"{key} not found in {name} #{task_id}!" |
| 163 | |
| 164 | |
| 165 | def to_raw(string): |
no outgoing calls
no test coverage detected