我在pytest_sessionfinish -->__update_report_file(pathlib.Path(htmlfile))中更改了 html 报告文件(为部分日志添加折叠),但这些更改不会出现在 allure 报告中。期望在 Execution--> Test body --> log 下看到它们。我怎样才能让它们在诱惑中可见?
def pytest_sessionfinish(session):
htmlfile = session.config.getoption('htmlpath')
if htmlfile is None: # html report not wanted by user
log.warning(f"pytest_sessionfinish html log doesn't created")
return
__update_report_file(pathlib.Path(htmlfile))