pytest 测试框架

pytest 测试框架

安装pytest以及常用插件

pip3 install pytest pytest-repeat pytest-timeout
pytest 			# pytest 测试suit
pytest-repeat 		# 测试次数插件
pytest-timeout 		# 测试超时插件
运行测试
python3 -m pytest --count=$count --timeout=$timeout test_xxx.py
原文地址:https://www.cnblogs.com/michaelcjl/p/15498996.html