Python BeautifulReport可视化报告代码实例

作者:天天向上327 时间:2023-11-12 14:53:13 

操作步骤

1.下载BeautifulReport文件,本例文件下载地址 最新文件下载地址

2.复制文件BeautifulReport,至python安装Lib\site-packages位置下

Python BeautifulReport可视化报告代码实例3.

3.导入:from BeautifulReport import BeautifulReport import unittest

4.testXXX测试用例函数下可视化报告用例描述:'''描述,第一个测试用例'''

5.mian下执行:

1.实例化:ts = unittest.TestSuite()

2.按类加载全部testxxx测试用例:ts.addTest(unittest.makeSuite(类名))
按函数加载testxxx测试用例:ts.addTest(类名(‘函数名'))

3.加载执行用例生成报告:result = BeautifulReport(ts)

4.定义报告属性:result.report(description='XXX报告XX描述', filename= 'xxx.html', log_path='C:\Users\EDZ\eclipse-workspace\pythonTest\Report')

举例说明


#!/usr/bin/python3
# encoding:utf-8
'''
Created on 2019年9月30日
@author: EDZ
'''
import unittest
from BeautifulReport import BeautifulReport
import os
import time

class HtmlReport(unittest.TestCase):
 def test_1(self):
   '''描述,第一个测试用例'''
   print('test_1错误')
   self.assertEqual(1, 2)
 def test_2(self):
   '''描述,第二个测试用例'''
   print('test_2正确')
   self.assertEqual(1, 1)
 def test_3(self):
   '''描述,第三个测试用例'''
   print('test_3错误')
   self.assertEqual(2, 3)
if __name__=='__main__':
 now = time.strftime("%Y-%m-%d %H%M%S", time.localtime(time.time()))
 localpath = os.getcwd()
 print('本文件目录位置:'+localpath)
 filepath = os.path.join(localpath,'Report')
 print('报告存放路径  :'+filepath)

ts = unittest.TestSuite()#实例化
 #按类加载全部testxxx测试用例
 ts.addTest(unittest.makeSuite(HtmlReport))
 #按函数加载testxxx测试用例
 #ts.addTest(HtmlReport('test_1'))
 filename = now +'.html'
 #加载执行用例生成报告
 result = BeautifulReport(ts)
 #定义报告属性
 result.report(description='XXX报告XX描述', filename= filename, log_path=filepath)

制台运行结果

本文件目录位置:C:\Users\EDZ\eclipse-workspace\pythonTest
报告存放路径 :C:\Users\EDZ\eclipse-workspace\pythonTest\Report
F.F
测试已全部完成,
可前往C:\Users\EDZ\eclipse-workspace\pythonTest\Report查询测试报告

可视化报告

Python BeautifulReport可视化报告代码实例

来源:https://www.cnblogs.com/yiwenrong/p/12658610.html

标签:Python,Beautiful,Report,可视化,报告
0
投稿

猜你喜欢

  • Python压缩和解压缩zip文件

    2023-09-16 21:20:10
  • 使用Django开发简单接口实现文章增删改查

    2023-02-12 22:29:37
  • Kali Linux 2022.1安装和相关配置教程(图文详解)

    2023-11-10 15:54:50
  • 如何动态在文档中加入<script></script>写入大段js?

    2010-07-02 13:17:00
  • 如何理解python中数字列表

    2023-01-30 13:29:09
  • Python求出0~100以内的所有素数

    2023-09-17 16:54:02
  • 内容适应形式

    2010-03-18 16:09:00
  • python 输出所有大小写字母的方法

    2021-01-05 01:02:57
  • Python数据可视化库seaborn的使用总结

    2022-08-07 11:43:04
  • python中的内置函数max()和min()及mas()函数的高级用法

    2023-01-21 18:45:43
  • django 解决manage.py migrate无效的问题

    2021-08-18 02:28:51
  • 关于Python 多重继承时metaclass conflict问题解决与原理探究

    2022-04-17 04:50:10
  • 交互设计的方法

    2010-08-18 12:32:00
  • 教你隐藏ACCESS数据库的表名

    2008-05-09 19:45:00
  • 服务端XMLHTTP(ServerXMLHTTP in ASP)进阶应用-User Agent伪装

    2008-11-11 12:29:00
  • 清除SQL被注入恶意病毒代码的语句

    2010-03-03 09:59:00
  • Python配置虚拟环境图文步骤

    2023-10-13 01:37:40
  • linux下导入、导出mysql数据库命令的实现方法

    2024-01-23 15:55:33
  • Python爬虫实战之爬取京东商品数据并实实现数据可视化

    2023-11-02 18:42:38
  • Python实现抓取网页并且解析的实例

    2022-01-12 13:24:53
  • asp之家 网络编程 m.aspxhome.com