(self)
| 305 | return {x for x in result if x.exists()} |
| 306 | |
| 307 | def pytest_report_collectionfinish(self) -> Optional[str]: |
| 308 | if self.active and self.config.getoption("verbose") >= 0: |
| 309 | return "run-last-failure: %s" % self._report_status |
| 310 | return None |
| 311 | |
| 312 | def pytest_runtest_logreport(self, report: TestReport) -> None: |
| 313 | if (report.when == "call" and report.passed) or report.skipped: |
no test coverage detected