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

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

 新增pytest.ini 配置文件

 

[pytest]
filterwarnings =
    error
    ignore::UserWarning

你可能感兴趣的