Skip to content

Instantly share code, notes, and snippets.

@FinchPowers
Created March 15, 2023 19:39
Show Gist options
  • Save FinchPowers/dfb8c537bf714410a17872263cd92f94 to your computer and use it in GitHub Desktop.
Save FinchPowers/dfb8c537bf714410a17872263cd92f94 to your computer and use it in GitHub Desktop.
@pytest.fixture
def capture_logging() -> Generator[StringIO, None, None]:
sio = StringIO()
sh = StreamHandler(stream=sio)
log.addHandler(sh)
yield sio
log.removeHandler(sh)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment