Logging: Make pytest_runtest_logreport() available for logging

Signed-off-by: Andras Mitzki <andras.mitzki@balabit.com>
This commit is contained in:
Andras Mitzki
2019-02-20 16:51:09 +01:00
parent c8a87e48ab
commit b26b731498
3 changed files with 40 additions and 0 deletions

View File

@@ -567,6 +567,11 @@ class LoggingPlugin(object):
with self._runtest_for(None, "finish"):
yield
@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_logreport(self):
with self._runtest_for(None, "logreport"):
yield
@pytest.hookimpl(hookwrapper=True, tryfirst=True)
def pytest_sessionfinish(self):
with self.live_logs_context():