Python单元测试框架Pytest——如何生成测试报告

本文讲述pytest如何生成测试报告。

首先准备一段测试代码:

import py.test

class TestCase(object): 
    def test_eq_set(self):
        assert set([0, 10, 11, 12]) == set([0, 20, 21])

    def test_eq_dict(self):
        assert {'a': 0, 'b': 1, 'c': 0} == {'a': 0, 'b': 2, 'd': 0}
    
    def test_eq_list(self):
        assert [0, 1, 2] == [0, 1, 3]

    def test_eq_longer_list(self):
        assert [1,2] == [1,2,3]

1、文本格式的报告

C:\Users\liu.chunming\Desktop>py.test test_report.py --resultlog=C:\Users\liu.chunming\Desktop\log.txt

指定当前路径下生成log.txt文件,打开文件,内容如下:


2、生成JUnitXml格式报告

该格式方便与CI服务器进行集成。

C:\Users\liu.chunming\Desktop>py.test test_report.py --junitxml=C:\Users\liu.chunming\Desktop\log.xml
打开生成的log.xml,内容如下:


3、将测试报告发送到pastebin服务器

C:\Users\liu.chunming\Desktop>py.test test_report.py --pastebin=all

点击生成的网址,内容如下:


当然,你可以只将失败的报告发送到pastebin服务器

C:\Users\liu.chunming\Desktop>py.test test_report.py --pastebin=failed

4、生成Html格式报告

这个需要安装pytest的第三方插件pytest-html:

C:\Users\liu.chunming\Desktop>pip install -U pytest-html
执行测试:

C:\Users\liu.chunming\Desktop>py.test test_report.py --html=C:\Users\liu.chunming\Desktop\log.html

打开生成的测试报告log.html:


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值