我用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)
2条答案
按热度按时间u2nhd7ah1#
在Python脚本的顶部,添加以下两行代码:
这将隐藏来自终端的所有警告。
希望这对你有帮助:)
pw136qt22#
有必要将这些行添加到项目设置中: