如何在nose2中检查测试运行结果?

时间:2015-12-02 16:20:53

标签: python nose2

使用unittest我可以检查测试运行期间是否有失败的测试:

import unittest

all_tests = unittest.defaultTestLoader.discover('path-to-tests')
results = unittest.TextTestRunner().run(all_tests)
if results.wasSuccessful():
    do_something()
else:
    do_something_else()

如何对nose2执行相同操作?

1 个答案:

答案 0 :(得分:0)

终于找到了答案。

import nose2

test_run = nose2.discover(argv = ['-s', 'path-to-tests'], exit = False)
if test_run.result.wasSuccessful():
    do_something()
else:
    do_something_else()