(self, line: str, newline: bool = False)
| 504 | return "bringing up nodes..." |
| 505 | |
| 506 | def rewrite(self, line: str, newline: bool = False) -> None: |
| 507 | pline = line + " " * max(self._lastlen - len(line), 0) |
| 508 | if newline: |
| 509 | self._lastlen = 0 |
| 510 | pline += "\n" |
| 511 | else: |
| 512 | self._lastlen = len(line) |
| 513 | self.tr.rewrite(pline, bold=True) |
| 514 | |
| 515 | @pytest.hookimpl |
| 516 | def pytest_xdist_setupnodes(self, specs: Sequence[execnet.XSpec]) -> None: |
no outgoing calls
no test coverage detected