未生成测试报告,运行报错:'_TestResult' object has no attribute 'outputBuffer'

一、运行main函数,未生成测试报告,报错:'_TestResult' object has no attribute 'outputBuffer' 

未生成测试报告,运行报错:'_TestResult' object has no attribute 'outputBuffer'_第1张图片

 

解决方式:

1、在HTMLTestReportCN.py中

    Ctrl+F搜索_TestResult方法,在__init__方法中添加:

self.outputBuffer = io.StringIO()
self.test_start_time = round(time.time(), 2)

 未生成测试报告,运行报错:'_TestResult' object has no attribute 'outputBuffer'_第2张图片

 

你可能感兴趣的:(未生成测试报告,运行报错:'_TestResult' object has no attribute 'outputBuffer')