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