blob: b9f1b22cb1277a2211724ba66461315171fedd48 (
plain)
1
2
3
4
5
6
7
8
|
import pytest
@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_makereport(item):
report = yield
if 'out' in item.funcargs:
report.sections.append(('out', item.funcargs['out'].read()))
return report
|