Resume this fixture's own capturing temporarily.
(self)
| 980 | self._capture.suspend_capturing() |
| 981 | |
| 982 | def _resume(self) -> None: |
| 983 | """Resume this fixture's own capturing temporarily.""" |
| 984 | if self._capture is not None: |
| 985 | self._capture.resume_capturing() |
| 986 | |
| 987 | def _is_started(self) -> bool: |
| 988 | """Whether actively capturing -- not disabled or closed.""" |
no test coverage detected