python:单元测试pytest

本文介绍了如何使用Pytest进行单元测试,并重点讲解了如何配置和使用Allure生成详细的测试报告,包括Allure的feature、story特性,以及step和attach方法的使用,帮助提升测试的可读性和追溯性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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

1:命名规则

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

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

 前提条件:需要下载pytest-html模块(python自带的生成测试报告模块)

pip install pytest-html

案例一
pytest.main(" 模块 .py") 【运行指定模块下,运行所有 test 开头的类和测试用例】
pytest . main ([ "--html=./report.html" , " 模块 .py" ])

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值