5

对于我的代码导入的第 3 方模块,我收到了来自 nosetest 的弃用警告。

有人知道如何消除这些警告吗?

我知道以下标志适用于相同代码的任意 python 运行:

 python -W ignore::DeprecationWarning

但是,调用nosetest 似乎并没有为我提供类似的标志来防止警告出现在测试报告中。

4

1 回答 1

3

Put

import warnings
warnings.filterwarnings('ignore', category=DeprecationWarning)

at the start of your test script, before you import any problematic libraries.

于 2010-09-16T16:00:42.610 回答