欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python3 unittest重复执行生成测试报告HTMLTestRunner

程序员文章站 2024-01-17 09:41:40
...

上一篇写到根据参数重复执行测试用例方法,详情请见上文(上文)

解决了这个问题又出现了一个新的问题,测试报告怎么生成。见下方代码:

import unittest
import os,time
from common import HTMLTestRunner

def createsuite1():
    file_path = os.path.dirname(os.path.abspath('.')) + '\\test_data' #这个是循环执行测试文件的地址
    testunit=unittest.TestSuite()
    discover=unittest.defaultTestLoader.discover(file_path,pattern='all_case.py',top_level_dir=None)
    for test_suite in discover:
        for test_case in test_suite:
            testunit.addTests(test_case)
            print(testunit)
    return testunit

report_time = time.strftime("%Y-%m-%d %H_%M_%S",time.localtime()) #文件名称
file_name = os.path.dirname(os.path.abspath('.')) + '\\report\\'+report_time+"_result.html"#文件存放地址
fp=open(file_name,'wb')

runner=HTMLTestRunner.HTMLTestRunner(
    stream=fp,
    title=u'管理端功能接口测试报告',
    description=u'用例执行情况:')

runner.run(createsuite1())

#关闭文件流,不关的话生成的报告是空的
fp.close()

HTMLTestRunner python3版本

https://www.cnblogs.com/feiquan/p/8525903.html

HTMLTestRunner美化

这个美化版的地址找不到了我就是用的这个版本,请大家自行百度吧 哈哈哈哈原博主看到的话记得联系我。

 

HTMLTestRunner 带截图版本

http://www.51testing.com/html/52/n-3710152.html

最终截图:

python3 unittest重复执行生成测试报告HTMLTestRunner