(self, output)
| 642 | self.assertRegex(output, regex) |
| 643 | |
| 644 | def parse_executed_tests(self, output): |
| 645 | regex = (fr'^{LOG_PREFIX}\[ *[0-9]+(?:/ *[0-9]+)*\] ' |
| 646 | fr'({self.TESTNAME_REGEX}) {RESULT_REGEX}') |
| 647 | parser = re.finditer(regex, output, re.MULTILINE) |
| 648 | return list(match.group(1) for match in parser) |
| 649 | |
| 650 | def check_executed_tests(self, output, tests, *, stats, |
| 651 | skipped=(), failed=(), |
no test coverage detected