(self, report: CollectReport)
| 631 | self.write("collecting ... ", flush=True, bold=True) |
| 632 | |
| 633 | def pytest_collectreport(self, report: CollectReport) -> None: |
| 634 | if report.failed: |
| 635 | self._add_stats("error", [report]) |
| 636 | elif report.skipped: |
| 637 | self._add_stats("skipped", [report]) |
| 638 | items = [x for x in report.result if isinstance(x, Item)] |
| 639 | self._numcollected += len(items) |
| 640 | if self.isatty: |
| 641 | self.report_collect() |
| 642 | |
| 643 | def report_collect(self, final: bool = False) -> None: |
| 644 | if self.config.option.verbose < 0: |
nothing calls this directly
no test coverage detected