(self, char: str)
| 472 | return len(self._progress_nodeids_reported) |
| 473 | |
| 474 | def hasopt(self, char: str) -> bool: |
| 475 | char = {"xfailed": "x", "skipped": "s"}.get(char, char) |
| 476 | return char in self.reportchars |
| 477 | |
| 478 | def write_fspath_result(self, nodeid: str, res: str, **markup: bool) -> None: |
| 479 | fspath = self.config.rootpath / nodeid.split("::", maxsplit=1)[0] |
no test coverage detected