😄作者简介:
小曾同学.com,一个致力于测试开发的博主⛽️,主要职责:测试开发、CI/CD
如果文章知识点有错误的地方,还请大家指正,让我们一起学习,一起进步。😊
座右铭:不想当开发的测试,不是一个好测试✌️。
如果感觉博主的文章还不错的话,还请点赞、收藏哦!👍
Pytest生成优美的测试报告,这是测试开发人员必备技能,所以今天的主题就是Pytest如何生成测试报告。主要分享两种方式
- pytest-html
- allure-pytest【推荐】🔥
文章目录
- 一、pytest-html
- 1.1 使用手册
- 二、allure-pytest【推荐】🔥
- 2.1 使用手册
一、pytest-html
pytest-html 是 pytest自带插件。
1.1 使用手册
-
安装
➜ ~ pip install pytest-html
-
命令行使用方式:
➜ ~ pytest -vs test_html.py --html=./testreport/report.html
其中,
./testreport/report.html
为测试报告相对路径 -
pytest.ini 方式使用
--html ./testreport/report.html
运行之后,在文件中会生成testreport/report.html文件,通过浏览器方式打开report.html文件即可。
测试报告展示如下:
二、allure-pytest【推荐】🔥
allur
是目前 Pytest 中最常用的插件,生成的测试报告要比 pytest-html 优美。
2.1 使用手册
-
安装allure插件
➜ ~ allure-pytest
-
命令行使用:
➜ ~ pytest -vs test_allure.py --alluredir=./report ➜ ~ allure serve ./report
-
在pytest.ini文件中使用
运行之后,看看到文件结构中生成report文件,其中存放的是.json文件,如果想把测试报告给别人,直接讲json复制过去就行,然后在命令行输入allure serve ./report
即可展示测试报告。
通常情况下,Pytest 与Jenkins做持续集成,自动生成测试报告并发给相关人员。更多Pytest内容,可参考 两小时玩转Pytest专栏。