我有一个基于 pytest 的测试框架auto-test。我在其中使用 pytest_configure 挂钩来设置以下 pytest-html 属性:
config.option.htmlpath = report.html
config.option.self_contained_html = True
如果我使用 pip 或 setup.py 预安装自动测试,pytest-html 会生成报告,但是当我使用自动测试作为插件运行测试时,pytest-html 不会生成报告!
这是我执行测试的方式
pytest test.py -p auto-test.conftest
请帮助了解插件行为。