美文网首页
python3 使用unittest时,提示:ResourceW

python3 使用unittest时,提示:ResourceW

作者: _百草_ | 来源:发表于2020-04-07 17:26 被阅读0次

    1. ResourceWarning信息

    用例执行成功,但是提示:

    ResourceWarning: unclosed <ssl.SSLSocket fd=312, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('x.x.x.x', 52978), raddr=('x.x.x.x', 443)>
    ResourceWarning: Enable tracemalloc to get the object allocation traceback
    

    2. 解决

    import warnings
    
    def setUp(self):
         warnings.simplefilter('ignore', ResourceWarning)
    

    相关文章

      网友评论

          本文标题:python3 使用unittest时,提示:ResourceW

          本文链接:https://www.haomeiwen.com/subject/vzfhpctx.html