pytest 禁用警告信息(忽略警告信息输出)

 

 如图示例代码,提示test_001这个case 存在警告

pytest 禁用警告信息(忽略警告信息输出)_第1张图片

 新增pytest.ini 配置文件

 pytest 禁用警告信息(忽略警告信息输出)_第2张图片

[pytest]
filterwarnings =
    error
    ignore::UserWarning

pytest 禁用警告信息(忽略警告信息输出)_第3张图片

 

你可能感兴趣的:(#,pytest测试框架,pytest)