是否有一种方法可以编写(或运行)一组Python unittest
测试,以便在测试失败时没有输出 except ?
例如,如果tests/mytests.py
包含一些unittest
测试,则运行python3 test/mytests.py
仅在测试失败时才输出到stdout(或stderr)。
答案 0 :(得分:0)
是的。我能够将技术结合到这两个问题的答案中,以使其起作用:
Python, unittest: Can one make the TestRunner completely quiet?
您可以取消对test_should_fail()
测试的注释,以验证测试失败时会发生什么。
# mymodule.py
def myfunc():
return True
import unittest
import os
class TestMyFunc(unittest.TestCase):
def test_myfunc(self):
self.assertEqual(myfunc(), True)
# def test_should_fail(self):
# self.assertEqual(True, False)
if __name__ == '__main__':
alltests = unittest.TestLoader().loadTestsFromTestCase(TestMyFunc)
runner = unittest.TextTestRunner(stream=open(os.devnull, 'w'))
result = runner.run(alltests)
if len(result.failures) or len(result.errors):
print('There were failures or errors.')