Suspend this fixture's own capturing temporarily.
(self)
| 975 | return CaptureResult(captured_out, captured_err) |
| 976 | |
| 977 | def _suspend(self) -> None: |
| 978 | """Suspend this fixture's own capturing temporarily.""" |
| 979 | if self._capture is not None: |
| 980 | self._capture.suspend_capturing() |
| 981 | |
| 982 | def _resume(self) -> None: |
| 983 | """Resume this fixture's own capturing temporarily.""" |
no test coverage detected