11.生成xml格式的测试报告
乙醇 创建于 about 7 years 之前
最后更新: less than a minute 之前
阅读数: 154
pytest有非常友好的命令行报告输出,在做用例开发的时候,这是极好的。然而我们在运行用例后经常会需要将测试结果广而告之,发送给相关责任人浏览,所以生成简洁美观的测试报告是很有必要的。
生成junit格式的xml报告
pytest可以生成junit格式的xml报告,在命令行中加入--junit-xml=path
参数就可以了。
pytest test_quick_start.py --junit-xml=report.xml
上面的命令在当前文件夹中生成了名为report.xml的测试报告
<?xml version="1.0" encoding="utf-8"?><testsuite errors="0" failures="0" name="pytest" skips="0" tests="1" time="0.009"><testcase classname="test_quick_start" file="test_quick_start.py" line="3" name="test_reverse" time="0.000499725341797"></testcase></testsuite>%
ci集成
jenkins在build后可以通过插件展示junit格式的测试报告,具体步骤就不描述了。