pytest 内置插件

Posted qika

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest 内置插件相关的知识,希望对你有一定的参考价值。

 

直接pip安装使用即可:

1、pytest-xdist
功能:开启多个worker进程,同时执行多个测试用例,达到并发运行的效果
官网介绍:https://pypi.org/project/pytest-xdist/

2、pytest-allure-adaptor
功能:生成allure报告,推荐jenkins构建时使用
官网介绍:https://pypi.org/project/pytest-allure-adaptor/

3、pytest-html
功能:生成html格式报告,推荐自己本地使用
官网介绍:https://pypi.org/project/pytest-html/

4、pytest-rerunfailures
功能:自动重跑失败用例
官网介绍:https://pypi.org/project/pytest-rerunfailures/3.1/

5、pytest-cache
功能:重跑上次失败的用例
官网介绍:https://pypi.org/project/pytest-cache/

6、pytest-ordering
功能:可指定一个测试套中的所有用例执行顺序。
官网介绍:https://pypi.org/project/pytest-ordering/

7、pytest-sugar
功能:增加显示一个进度条,并立即显示失败的测试。(为了好看点,其实正常使用pytest运行时也是有进度存在的)
官网介绍:https://pypi.org/project/pytest-sugar/

 

以上是关于pytest 内置插件的主要内容,如果未能解决你的问题,请参考以下文章

Pytest 的高级用法之 插件开发

Pytest 的高级用法之 插件开发

Pytest08-pytest工具与插件

windows环境pytest_allrue集成Jenkins邮件(二)

46-pytest-分布式插件pytest-xdist使用

pytest使用详解