HTMLRunner for unittest

htmlrunner-unittest生成多样的测试报告

Feature

  • 日志
  • 添加图片
  • 顺序执行/打乱执行
  • 多线程
  • 失败重试
  • 按日期命名
  • 多语言
  • 发送邮件
  • 按测试类统计
  • 统计图
  • 执行时间
  • 超时时间设置
  • 环境信息
  • 多次运行结果
  • 性能分析
  • 不稳定用例
  • 标记bug
  • 增加稳定性
  • 异常解释
  • extra信息
  • 自定义模板
  • email支持格式
  • 发送到飞书、钉钉、企业微信,短信(仅summary),Confluence (hook)
  • 获取代码数据
  • tag实现
  • level实现
  • timeout实现
  • 拦截请求和响应

Install

pip install htmlrunner

Simple Use

from htmlrunner import HTMLRunner
suite = unittest.defaultTestLoader.discover('.')
HTMLRunner(output="report_%Y%m%d_%H%M%S.html",
            title="测试报告",
            description="测试报告描述", tester='Hzc').run(suite)

Todo

  • setup module timeout问题
  • not run test duration问题

相关文章:

  • 2022-03-07
  • 2021-08-19
  • 2021-09-22
  • 2021-10-29
  • 2021-09-28
  • 2022-02-27
  • 2022-12-23
猜你喜欢
  • 2021-11-30
  • 2021-08-11
  • 2022-12-23
  • 2021-06-23
  • 2022-01-12
  • 2021-06-12
  • 2022-12-23
相关资源
相似解决方案