(二十九)pytest.ini配置文件addopt使用

Posted wx921308494

tags:

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

偷懒,每次输入pytest ********太多了怎么办?

在pytest.ini文件中配置addopts

addopts = -q --tb=line --reruns 1 --html=report_name.html

 

解释一下:

-q: 输入简要信息,

--tb=line:信息回溯只有一行

--reruns 1:失败用例重执行一次

--html=report_name.html:产出测试报告

 

以上是关于(二十九)pytest.ini配置文件addopt使用的主要内容,如果未能解决你的问题,请参考以下文章

pytest配置文件pytest.ini

pytestconfig--获取命令行参数及pytest.ini文件配置

pytest配置文件-随笔

38-pytest-命令行中-o参数使用

38-pytest-命令行中-o参数使用

pytest+allure生成自动化测试报告