(self, program_text: str, incremental_step: int)
| 452 | assert proc.returncode == 0 |
| 453 | |
| 454 | def get_separate(self, program_text: str, incremental_step: int) -> Any: |
| 455 | template = r"# separate{}: (\[.*\])$" |
| 456 | m = re.search(template.format(incremental_step), program_text, flags=re.MULTILINE) |
| 457 | if not m: |
| 458 | m = re.search(template.format(""), program_text, flags=re.MULTILINE) |
| 459 | if m: |
| 460 | return ast.literal_eval(m.group(1)) |
| 461 | else: |
| 462 | return True |
| 463 | |
| 464 | |
| 465 | class TestRunMultiFile(TestRun): |
no test coverage detected