栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

Python单元测试---pytest

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Python单元测试---pytest

需要安装 pytest 和 pytest-html( 生成html测试报告) pip install pytest 和 pip install pytest-html

命名规则

Pytest 单元测试中的类名和方法名必须是以 test 开头 , 执行中只能找到 test 开头的类和方法,比 unittest 更加严谨 Pytest: setup, setup_class 和 teardown, teardown_class 函数 ( 和 unittest 执行效果一样 ) 运行于测试方法的始末,即 : 运行一次测试函数会运行一次 setup 和 teardown 运行于测试方法的始末 , 但是不管有多少测试函数都只执行一次 setup_class和 teardown_class

显示print内容 Pytest生成自带的html测试报告

加断言查看结果 

查看测试报告 

 -x出现一条测试用例失败就退出测试

 使用@pytest.mark.skip()跳过该用例(函数)

读取csv文件

读取xml文件  

首先配置allure的环境变量

其次要安装allure

pip install allure-pytest  

allure-pytest是Pytest的一个插件,通过它我们可以生成Allure所需要的用于生成测试报告的数据

Allure常用的几个特性

@allure.feature # 用于描述被测试产品需求 @allure.story # 用于描述 feature 的用户场景,即测试需求 with allure.step (): # 用于描述测试步骤,将会输出到报告中 allure.attach # 用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/315755.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号