Python unittest输出仅在测试失败时

时间:2020-06-17 01:25:40

标签: python python-unittest

是否有一种方法可以编写(或运行)一组Python unittest测试,以便在测试失败时没有输出 except

例如,如果tests/mytests.py包含一些unittest测试,则运行python3 test/mytests.py仅在测试失败时才输出到stdout(或stderr)。

1 个答案:

答案 0 :(得分:0)

是的。我能够将技术结合到这两个问题的答案中,以使其起作用:

Python, unittest: Can one make the TestRunner completely quiet?

argparse and unittest python

您可以取消对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.')