You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the SimpleTestResourceWrapper uses with self._debugging_output.capture_stdout_and_stderr() to capture stdout and stderr with no way to disable it. This prevents using pdb for test debugging because it's unable to pipe stdout/stderr. I have manually patched my sources by adding a capture: bool = False option in each of the resource hook functions, but it would be nice to have it supported with your intentional design input.