pytest的一些你爱不释手的插件
Posted pingguo-softwaretesting
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest的一些你爱不释手的插件相关的知识,希望对你有一定的参考价值。
1. pytest-html
安装:pip install pytest-html # 通过pip安装pytest-html
运行测试文件的时候,命令行加上对应参数即可
比如:pytest test_class.py --html=./report.html, (./report.html表示在当前目录下,创建名称叫report的html文件)
效果大概就是酱紫的
2. pytest-rerunfailures
安装:pip install pytest-rerunfailures #通过pip安装pytest-rerunfailures
运行测试文件 pytest test_class.py --reruns 5 (失败重跑5次)
3. pytest-ordering
以上是关于pytest的一些你爱不释手的插件的主要内容,如果未能解决你的问题,请参考以下文章