django 如何修复pytest中的警告

68bkxrlz  于 2022-12-01  发布在  Go
关注(0)|答案(2)|浏览(140)

我用py test做测试。在终端中有某种警告,所以我可以直接跳过它,但我想从终端中删除它。

RemovedInDjango50Warning: The USE_L10N setting is deprecated. Starting with Djan
go 5.0, localized formatting of data will always be enabled. For example Django will display numbers and dates using the format of the current locale.
    warnings.warn(USE_L10N_DEPRECATED_MSG, RemovedInDjango50Warning)

救救我!
enter image description here

u2nhd7ah

u2nhd7ah1#

在Python脚本的顶部,添加以下两行代码:

import warnings
warnings.filterwarnings(action="ignore")

这将隐藏来自终端的所有警告。
希望这对你有帮助:)

pw136qt2

pw136qt22#

有必要将这些行添加到项目设置中:

import warnings
warnings.filterwarnings(action="ignore")

相关问题