我有一个通过 pytest-html 生成 HTML 输出的测试。
我收到报告,但我想添加对失败和预期图像的引用;我将它们保存在我的主 test.py 文件中,并将钩子添加到conftest.py
.
现在,我不知道如何将这些图像传递给函数;执行测试后调用钩子;目前我正在对输出文件进行硬编码,并且它们已附加;但我想从测试中传递图像的路径,特别是因为我需要编写更多测试,这些测试可能保存在我常用文件夹中的其他位置,并且可能有不同的名称。
这是我在 conftest.py 中的钩子
@pytest.mark.hookwrapper
def pytest_runtest_makereport(item, call):
timestamp = datetime.now().strftime('%H-%M-%S')
pytest_html = item.config.pluginmanager.getplugin('html')
outcome = yield
report = outcome.get_result()
extra = getattr(report, 'extra', [])
if report.when == 'call':
# Attach failure image, hardcoded...how do I pass this from the test?
extra.append(pytest_html.extras.image('/tmp/image1.png'))
# test report html
extra.append(pytest_html.extras.url('http://www.theoutput.com/'))
xfail = hasattr(report, 'wasxfail')
if (report.skipped and xfail) or (report.failed and not xfail):
# only add additional data on failure
# Same as above, hardcoded but I want to pass the reference image from the test
extra.append(pytest_html.extras.image('/tmp/image2.png'))
extra.append(pytest_html.extras.html('<div>Additional HTML</div>'))
report.extra = extra
如何从我的 pytest 测试文件中将包含要附加的图像路径的变量传递给钩子?