| 386 | return char in self.reportchars |
| 387 | |
| 388 | def write_fspath_result(self, nodeid: str, res, **markup: bool) -> None: |
| 389 | fspath = self.config.rootpath / nodeid.split("::")[0] |
| 390 | if self.currentfspath is None or fspath != self.currentfspath: |
| 391 | if self.currentfspath is not None and self._show_progress_info: |
| 392 | self._write_progress_information_filling_space() |
| 393 | self.currentfspath = fspath |
| 394 | relfspath = bestrelpath(self.startpath, fspath) |
| 395 | self._tw.line() |
| 396 | self._tw.write(relfspath + " ") |
| 397 | self._tw.write(res, flush=True, **markup) |
| 398 | |
| 399 | def write_ensure_prefix(self, prefix: str, extra: str = "", **kwargs) -> None: |
| 400 | if self.currentfspath != prefix: |