MCPcopy
hub / github.com/pytest-dev/pytest / start_global_capturing

Method start_global_capturing

src/_pytest/capture.py:771–774  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

769 return self._method != "no"
770
771 def start_global_capturing(self) -> None:
772 assert self._global_capturing is None
773 self._global_capturing = _get_multicapture(self._method)
774 self._global_capturing.start_capturing()
775
776 def stop_global_capturing(self) -> None:
777 if self._global_capturing is not None:

Callers 3

test_init_capturingMethod · 0.95

Calls 2

_get_multicaptureFunction · 0.85
start_capturingMethod · 0.80

Tested by 2

test_init_capturingMethod · 0.76