(self, output)
| 1390 | parallel=True, stats=0) |
| 1391 | |
| 1392 | def parse_methods(self, output): |
| 1393 | regex = re.compile("^(test[^ ]+).*ok$", flags=re.MULTILINE) |
| 1394 | return [match.group(1) for match in regex.finditer(output)] |
| 1395 | |
| 1396 | def test_ignorefile(self): |
| 1397 | code = textwrap.dedent(""" |
no test coverage detected