(self)
| 412 | return [rep for rep in self.getreports(names) if rep.failed] |
| 413 | |
| 414 | def getfailedcollections(self) -> Sequence[CollectReport]: |
| 415 | return self.getfailures("pytest_collectreport") |
| 416 | |
| 417 | def listoutcomes( |
| 418 | self, |
no test coverage detected