python config_error ai_generated true

Pytest 配置警告:未知配置选项 filterwarnings

PytestConfigWarning: Unknown config option: filterwarnings

ID: python/pytest-warning-filter-error

其他格式: JSON · Markdown 中文 · English
80%修复率
84%置信度
0证据数
2024-07-30首次发现

版本兼容性

版本状态引入弃用备注
7.4.0 active

根因分析

pytest.ini 或 pyproject.toml 中配置了错误的 filterwarnings 语法

English

pytest.ini 或 pyproject.toml 中配置了错误的 filterwarnings 语法

generic

解决方案

  1. 90% 成功率
    在 pytest.ini 中使用 filterwarnings = error::DeprecationWarning
  2. 85% 成功率
    pytest -W error::DeprecationWarning

无效尝试

常见但无效的做法:

  1. 30% 失败

    警告可能掩盖实际问题

  2. 40% 失败

    无法控制警告,测试输出混乱