前提:需要安装 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调用语句
pytst.main(['-x','--html=./report.html','t12est000.py'])
-x出现一条测试用例失败就退出测试
-s:显示print内容
扩充:跳过
使用@pytest.mark.skip()跳过该用例(函数)
@pytest.mark.skip()
def test001(self):
assert 2==2
3:Pytest的运行方式
. 点号,表示用例通过
F 表示失败 Failure
E 表示用例中存在异常 Error
4.1:读取csv文件
4.2:读取xml文件
5:allure
Allure是一款轻量级并且非常灵活的开源测试报告框架。 它支持绝大多数测试框架, 例如TestNG、
Pytest、JUint等。它简单易用,易于集成。
首先配置allure的环境变量
验证allure是否配置成功:allure