我正在使用nosetests test.py
来运行单元测试:
import unittest
import logging
class Test(unittest.TestCase):
def test_pass(self):
logging.getLogger('do_not_want').info('HIDE THIS')
logging.getLogger('test').info('TEST PASS')
self.assertEqual(True, True)
def test_fail(self):
logging.getLogger('do_not_want').info('HIDE THIS')
logging.getLogger('test').info('TEST FAIL')
self.assertEqual(True, False)
当测试失败时,它会打印出所有日志记录信息。我可以使用--logging-filter
仅提取一些记录器:
nosetests test.py --verbosity=2 --logging-filter=test
test_fail (test.Test) ... FAIL
test_pass (test.Test) ... ok
======================================================================
FAIL: test_fail (test.Test)
----------------------------------------------------------------------
Traceback (most recent call last):
File ".../test.py", line 14, in test_fail
self.assertEqual(True, False)
AssertionError: True != False
-------------------- >> begin captured logging << --------------------
test: INFO: TEST FAIL
--------------------- >> end captured logging << ---------------------
----------------------------------------------------------------------
Ran 2 tests in 0.001s
FAILED (failures=1)
但是,当测试通过时,它不会显示任何内容。
我希望在测试通过时看到一个特定记录器的输出。我发现我可以使用-s
显示所有stdout / stderr文本,这不是我需要的 - 它会打印所有内容。我尝试使用各种设置,例如--nologcapture
,--nocapture
或--logging-filter
,但我无法获得预期的效果。
答案 0 :(得分:21)
nosetests --help
并没有使这个显而易见,但答案是--debug
标志。此标志将您希望从中接收消息的记录器的名称作为参数。
以下是OP代码的略微修改版本:
# test.py
import unittest
import logging
class Test(unittest.TestCase):
def test_pass(self):
logging.getLogger('hide.this').info('HIDE THIS')
logging.getLogger('show.this').info('TEST PASS')
self.assertEqual(True, True)
def test_fail(self):
logging.getLogger('hide.this').info('HIDE THIS')
logging.getLogger('show.this').info('TEST FAIL')
self.assertEqual(True, False)
对于这个例子,nosetests test.py --debug=show.this
应该可以解决问题。
答案 1 :(得分:-1)
我不确定这是否是您想要的。
我使用的是:
nosetest -v -s
-s,--nocapture
不要捕获标准输出(任何标准输出输出将立即打印)[NOSE_NOCAPTURE]
HTH