【Pytest实战】Pytest 如何生成优美的测试报告(allure-pytest)

作者简介:
小曾同学.com,一个致力于测试开发的博主⛽️,主要职责:测试开发、CI/CD
如果文章知识点有错误的地方,还请大家指正,让我们一起学习,一起进步。
座右铭:不想当开发的测试,不是一个好测试✌️。
如果感觉博主的文章还不错的话,还请点赞、收藏哦!

Pytest生成优美的测试报告,这是测试开发人员必备技能,所以今天的主题就是Pytest如何生成测试报告。主要分享两种方式

  • pytest-html
  • allure-pytest【推荐】

文章目录

  • 一、pytest-html
    • 1.1 使用手册
  • 二、allure-pytest【推荐】
    • 2.1 使用手册

一、pytest-html

pytest-html 是 pytest自带插件。

1.1 使用手册

  1. 安装

    ➜  ~ pip install pytest-html
    
  2. 命令行使用方式:

    ➜  ~ pytest -vs test_html.py --html=./testreport/report.html
    

    其中, ./testreport/report.html为测试报告相对路径

  3. pytest.ini 方式使用

    --html ./testreport/report.html
    

    【Pytest实战】Pytest 如何生成优美的测试报告(allure-pytest)_第1张图片
    运行之后,在文件中会生成testreport/report.html文件,通过浏览器方式打开report.html文件即可。
    【Pytest实战】Pytest 如何生成优美的测试报告(allure-pytest)_第2张图片
    测试报告展示如下:

    【Pytest实战】Pytest 如何生成优美的测试报告(allure-pytest)_第3张图片

二、allure-pytest【推荐】

allur 是目前 Pytest 中最常用的插件,生成的测试报告要比 pytest-html 优美。

2.1 使用手册

  1. 安装allure插件

    ➜  ~ allure-pytest
    
  2. 命令行使用:

    ➜  ~ pytest -vs test_allure.py --alluredir=./report
    ➜  ~ allure serve ./report
    
  3. 在pytest.ini文件中使用

    【Pytest实战】Pytest 如何生成优美的测试报告(allure-pytest)_第4张图片
    【Pytest实战】Pytest 如何生成优美的测试报告(allure-pytest)_第5张图片
    运行之后,看看到文件结构中生成report文件,其中存放的是.json文件,如果想把测试报告给别人,直接讲json复制过去就行,然后在命令行输入

    allure serve ./report
    

    即可展示测试报告。
    【Pytest实战】Pytest 如何生成优美的测试报告(allure-pytest)_第6张图片
    通常情况下,Pytest 与Jenkins做持续集成,自动生成测试报告并发给相关人员。更多Pytest内容,可参考 两小时玩转Pytest专栏。

你可能感兴趣的:(#,两小时玩转Pytest,自动化测试,Allure-pytest,测试报告,Jenkins与pytest,pytest-html)