Pytest框架介绍、安装
2018-10-11 本文已影响0人
JerrySong
pytest是python测试框架,与python自带的unittest测试框架类似,但是比unittest框架使用起来更简洁,功能更强大
pytest特征
1:断言提示信息更清楚
2:自动化加载函数与模块
3:支持运行由nose, unittest编写的测试case
4:支持py2.3,2.7,3.x
5:丰富的插件以及社区支持
6:支持参数化
7:支持失败重跑
8:支持多线程跑用例
9:支持分布式
pytest安装
pip安装,在cmd下面执行命令
pip install -U pytest
安装版本检查
pytest --version
例子
![](https://img.haomeiwen.com/i5233545/d4420e0cc8beffa3.png)
运行
![](https://img.haomeiwen.com/i5233545/96bc1605e3ff2539.png)
![](https://img.haomeiwen.com/i5233545/f3dc3a0212cad5c1.png)