pytest中文文档教程(三)测试报告篇

本文介绍了如何使用pytest-testreport和allure插件生成HTML测试报告。首先,详细阐述了pytest-testreport的安装与使用,包括报告样式、参数设置等。接着,讲解了allure的环境配置、报告生成、服务启动以及内置方法,如添加错误截图、用例名称、功能描述和套件名称。最后,提到了allure报告在测试自动化中的重要性和实用性。
摘要由CSDN通过智能技术生成

一、生成HTML报告

pytest生成html的插件有很多,比如pytest-html,pytest-testreport等待,下面就给大家介绍如何使用pytest-testreport这个插件来生成HTML测试报告。

1.1、安装插件
pip install pytest-testreport

注意点:如果安装了pytest-html这个插件请先卸载,不然有可能会有冲突

1.2、插件的使用介绍

在使用pytest运行测试时,如果要使用pytest-testreport生成测试报告, 运行测试时加上参数--report 指定报告文件名,即可实现。

其他运行参数:

–title :指定报告标题

–tester :指定报告中的测试者

–desc :指定报告中的项目描述

–template :指定报告模板样式(1 or 2)

  • 命令行执行:
pytest --report=musen.html --title=测试报告 --tester=木森 --desc=项目描述  --template=2
  • 代码中使用pytest.main执行
import pytest

pytest.main(['--report=musen.html',
             '--title=演示A报告',
             '--tester=测试员',
             '--desc=报告描述信息',
             '--template=2'])
  • 生成的报告样式如下

    样式一

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-i3gARncm-1660717459091)()]

    样式二

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-rCMiHHB2-1660717459092)()]

关于HTML格式的报告生成就给大家介绍到这里,接下来和大家讲讲怎么集成allure报告

二、集成Allure报告

如果要在pytest中集成allure报告,首先得下载allure,并配置好环境

2.1、allure环境配置
一、下载allure:

​ 地址:https://github.com/allure-framework/allure2/releases

下载之后并解压

二、环境变量配置

将allure解压之后的allure路径的bin目录路径放到环境变量当中

1590224001037

三、安装allure的pytest插件
pip install allure-pytest 
2.2、生成allure报告

安装配置好allure环境之后,在使用pytest执行用例时,就可以通过allure插件的参数来指定生成allure来报告了。

运行参数:

–alluredir :指定allure报告保存的路径

  • 命令行运行
pytest --alluredir=reports
  • 代码中使用pytest.main执行
import pytest

pytest.main(['--alluredir=reports'])
2.3、启动allure服务

在命令终端输入如下命令,启动allure服务

# 命令:allure serve  生成的报告路径
allure serve reports

执行上述命令,allure服务启动之后会自动在打开浏览器,显示allure的服务页面

2.4、allure内置常用的方法
添加错误截图
  • allure.title
 def error_save_screenshot(driver,file_path, desc):
        # 对当前页web页面进行截图
        driver.save_screenshot(file_path)
        # 将截图保存到allure报告中
        with open(file_path, "rb") as f:
            file = f.read()
            allure.attach(file, "失败截图", allure.attachment_type.PNG)
添加报告中的用例名称
  • allure.title
    import allure
    
    class TestLogin:
        
        @allure.title('登录用例')
        def test_login(self):
            pass
    
参数化的用例中动态设置用例名称
  • allure.dynamic.title
    # 用例数据
    casedatas = [
        {'title': '反向用例1','data':"xxx"},
        {'title': '反向用例2','data':"xxx"},
        {'title': '反向用例3','data':"xxx"}
    ]
    
    class TestLogin:
        @pytest.mark.parametrize('item',casedatas )
        def test_demo(self, item):
        	# 动态设置报告中的用例名称
            allure.dynamic.title(item['title'])
    
    
添加报告中的功能描述
  • allure.story
@allure.story('登录功能')
class TestLogin:

    @allure.title('登录用例')
    def test_login(self):
        pass

添加报告中套件名称
  • allure.suite
@allure.suite('登录测试套件')
class TestLogin:
    @allure.title('登录用例')
    def test_login(self):
        pass

关于pytest生成测试报告的功能就给大家扩展到这里了!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值