self.error_count += 1
TestResult.addError(self, test, err)
_, _exc_str = self.errors[-1]
output = self.complete_output()
self.result.append((2, test, output, _exc_str))
if self.verbosity > 1:
sys.stderr.write('E ')
sys.stderr.write(str(test))
sys.stderr.write('\n')
else:
sys.stderr.write('E')
其中第三行的 _, _exc_str = self.errors[-1] 看不懂是什么意思,求大神解答
从来没用过, 只能看一下源码,是对unittest的一些拓展.
self.errors[-1]
是最后一个 errors 也就是通过TestResult.addError(self, test, err)
增加的errors.errors 参考 https://docs.python.org/2.7/library/unittest.html#unittest.TestResult.errors
是一个二元组的list, 元组中第一个是TestCase实例也就是这次赋值给
_
(需要忽略的内容) 第二个是tracebacks是这次需要的内容.因为
htmltestrunner
自己的注释说