如何使用pytest生成测试报告?

时间:2015-03-18 13:48:19

标签: python pytest

如何使用 pytest 生成测试报告?我搜索了它,但无论我得到的是关于报道报道。 我试过这个命令:

py.test sanity_tests.py --cov=C:\Test\pytest --cov-report=xml

但是,参数表示它生成覆盖率报告而不是测试报告。 请帮忙!!

4 个答案:

答案 0 :(得分:11)

从评论中删除:您可以使用--junitxml参数。

$ py.test sample_tests.py --junitxml=C:\path\to\out_report.xml

答案 1 :(得分:1)

您可以使用pytest插件“ pytest-html ”生成html报告,该报告也可以转发给不同的团队

首先安装插件:

$ pip install pytest-html

第二,只需使用以下命令运行测试:

$ pytest --html=report.html

您还可以在代码中使用插件提供的钩子。

import pytest
from py.xml import html

def pytest_html_report_title(report)
   report.title = "My very own title!"

参考: https://pypi.org/project/pytest-html/

答案 2 :(得分:0)

我还没有尝试过,但是您可以尝试参考https://github.com/pytest-dev/pytest-html。可以生成HTML输出的python库。

答案 3 :(得分:0)

py.test --html=Report.html 

您还可以在此处指定python文件。在这种情况下,当未指定文件时,它将拾取运行命令的目录中存在的所有带有“ test_%”之类名称的文件,并执行它们,并生成名为Report.html

的报告。

您还可以相应地修改报告的名称。