pytest之allure测试报告02:allure具体使用方法

一、allure包含的方法

二、allure使用教程

(1)用例中写入allure方法

复制代码
@allure.epic("数据进制项目epic")
@allure.feature("手机号模块feature")
class TestMobile:
    @allure.story("杭州的手机号story")
    @allure.title("测试手机号归属地title")
    @allure.testcase("http://www.baidu.com", name="接口地址testcase")
    @allure.issue("http://www.baidu.com", name="缺陷地址issue")
    @allure.link("http://www.baidu.com", name="链接地址link")
    @allure.description("当前手机号是13456755448,归属地是杭州的description")
    @allure.step("先进性归属地的操作step")
    @allure.severity("critical")
    def test_mobile(self):
        param = base_data.read_data()["mobile_belong"]
        result = mobile_query(param)
        assert result.body['status'] == 0
        assert result.body['msg'] == "ok"
        assert result.body['result']["shouji"] == "13456755448"
        assert result.body['result']["province"] == "浙江"
        assert result.body['result']["city"] == "杭州"
        assert result.body['result']["company"] == "中国移动"
        assert result.body['result']["cardtype"] is None
        assert result.body['result']["areacode"] == "0571"

(2)生成报告

1)配置pytest.ini。

写入 addopts: -vs --alluredir ./report。./代表报告生成在当前文件的根目录,report即为生成目录文件夹的名称。

代码中点击三角运行符号后:如下生成的报告位置:

2)终端执行生成生成根目录report:会在整个项目的根目录下生成report。

pytest 需要执行的文件的绝对路径

3)控制台输入allure generate allure-report 同样也能项目根目录中生成报告。

(3)打开/运行报告

打开根目录下的报告:

1)allure serve ./report

2)allure open allure-report 。对应打开第二步第三种方法生成的report

打开测试用例文件夹下的report:

如下运行case_optimize_class文件后,在test_case_optimize文件夹下生成report

选中该report右键,复制report的绝对路径:

终端输入report绝对地址运行

生成报告页面如下:

左下角可切换中英文。点击特性场景--数据进制项目epic可下钻查看:

关注左侧和右侧相对应展示(1)代码编写配置的内容。

相关推荐
2601_962387821 小时前
web自动化测试实战教程【selenium/unittest/pytest】【共193课
selenium·pytest·devops·web自动化测试·unittest
weixin_440730503 小时前
使用pytest中方法控制执行步骤(test_begin.py、test_end.py,@pytest.mark.run(order=1))
开发语言·python·pytest
2601_962297254 小时前
Python、Pytest、Allure、Selenium和Jenkins实现自动化测试集成实例
python·selenium·jenkins·pytest·allure
2601_962077601 天前
从零搭建Python接口自动化测试框架:pytest+requests实战指南
python·pytest·接口自动化·requests·框架搭建
weixin_440730501 天前
pytest结合allure生成html测试报告(step、story、severity、screenshot)
前端·html·pytest·allure报告
拜托多多指教1 天前
【Pytest框架学习】分层架构
python·pytest
2601_962299881 天前
python脚本如何单元测试
python·单元测试·pytest·unittest·mock对象
Tizzy JJ2 天前
Python + pytest 接口自动化测试框架实战:从零搭建企业级项目骨架
开发语言·python·pytest
Tizzy JJ2 天前
接口自动化测试实战:如何围绕真实业务场景设计高质量用例
python·自动化·pytest
测试老哥3 天前
Pytest 之assert断言的使用
自动化测试·软件测试·python·测试工具·测试用例·pytest·接口测试