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

时间:2018-06-05 12:15:25

标签: python python-3.x pytest pytest-html

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

我附上了pytest-html报告 enter image description here

1 个答案:

答案 0 :(得分:3)

relevant spot in the docs州:

  

环境部分由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