如何在 pytest-html 报表中删除环境表



我正在尝试删除pytest-html报告中存在的环境表,但我不确定该怎么做?

我已经附上了 pytest-html 报告 在此处输入图像描述

文档中的相关位置指出:

环境部分由 pytest-metadata、plugin 提供,可以通过pytest_configure钩子访问:

def pytest_configure(config):
config._metadata['foo'] = 'bar'

修改config._metadata将影响呈现的"环境"部分。如果要完全删除它,请将元数据设置为None

# conftest.py
def pytest_configure(config):
config._metadata = None

相关内容

  • 没有找到相关文章

最新更新