单元测试之pytest

前提:需要安装 pytest pytest-html( 生成 html 测试报告)
pip install pytest pip install pytest-html
1: 命名规则
Pytest 单元测试中的类名和方法名必须是以 test 开头 , 执行中只能找到 test 开头的类和方法,比 unittest 更加严谨

2:Pytest生成自带的html测试报告  

前提条件:需要下载 pytest-html 模块 (python 自带的生成测试报告模块 )
pip install pytest-html
pytest.main(" 模块 .py") 【运行指定模块下,运行所有 test 开头的类和测试用例】
格式: pytest . main ([ "--html=./report.html" , " 模块 .py" ])
报告生成:

运行指定模块指定类指定用例,冒号分割,并生成测试报告

pytest . main ([ -- html =. / report . html’ , 模块 . py :: :: test_a_001 '])

 

直接执行 pytest.main() 【自动查找当前目录下,以 test 开头的文件或者以 test 结尾的 py 文件】

 

Pytest 调用语句
pytst . main ([ '-x' , '--html=./report.html' , 't12est000.py' ])
-x 出现一条测试用例失败就退出测试
-s: 显示 print 内容
扩充:跳过
使用 @pytest.mark.skip() 跳过该用例 ( 函数 )

3:Pytest的运行方式 

. 点号,表示用例通过
F 表示失败 Failure
E 表示用例中存在异常 Error

4:文件读取

4.1:读取csv文件

 

4.2:读取xml文件 

5:allure

配置allure

 

验证allure是否配置成功  

安装

pip install allure-pytest

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

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

 

5.1.3 with allure.step ()
用于描述测试步骤,将会输出到报告中
5.1.4 allure.attach
用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值