我是靠谱客的博主 欢呼小笼包,这篇文章主要介绍在 unittest 中使用 logging 模块记录测试数据,现在分享给大家,希望可以做个参考。

# -*- coding:utf-8 -*-
import sys
import logging
import unittest
import os

reload(sys)
sys.path.append(os.path.dirname(os.path.abspath(__file__)) + r'..')  # 返回脚本的路径
logging.basicConfig(level=logging.DEBUG,
                    format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s',
                    datefmt='%a, %d %b %Y %H:%M:%S',
                    filename='log_test.log',
                    filemode='w')
logger = logging.getLogger()


class SomeTest(unittest.TestCase):
    def testSomething(self):
        logger.debug("this= %r", 'aaa')
        logger.debug("that= %r", 'bbb')
        # etc.
        self.assertEquals(3.14, 3.14, 'nonono')

if __name__ == "__main__":
    unittest.main()

生成的日志文件内容如下:

Wed, 17 May 2017 15:04:53 log_test.py[line:19] DEBUG this= 'aaa'
Wed, 17 May 2017 15:04:53 log_test.py[line:20] DEBUG that= 'bbb'

PyDev unittesting: How to capture text logged to a logging.Logger in “Captured Output”

最后

以上就是欢呼小笼包最近收集整理的关于在 unittest 中使用 logging 模块记录测试数据的全部内容,更多相关内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部