(self)
| 791 | return self._tw.width_of_current_line |
| 792 | |
| 793 | def pytest_collection(self) -> None: |
| 794 | if self.isatty(): |
| 795 | if self.config.option.verbose >= 0: |
| 796 | self.write("collecting ... ", flush=True, bold=True) |
| 797 | elif self.config.option.verbose >= 1: |
| 798 | self.write("collecting ... ", flush=True, bold=True) |
| 799 | |
| 800 | def pytest_collectreport(self, report: CollectReport) -> None: |
| 801 | if report.failed: |