如何在pytest-html报告中列出已安装的软件包和环境变量?

时间:2019-12-10 16:16:44

标签: selenium pytest pytest-html

我有一个使用硒+ python测试的框架,我需要使用pytest-html来获取并显示生成的报告中有关已安装软件包和环境变量的信息。我唯一的想法是获取extra.html并编写一个程序包,该程序包将对软件包运行pip list,但这看起来有些麻烦。

任何建议都将不胜感激。

1 个答案:

答案 0 :(得分:0)

嗯,事实证明这很容易做到。我不得不使用常见的os库:

import os
    def _pytest_configure_(config):
        config.metadata['os'] = os.name
        config.metadata['PATH'] = os.environ['PATH']
        config.metadata['pwd'] = os.getcwd()

并将其放入报告中,然后运行python3 -m pytest -v --html=report.html