51Testing软件测试论坛

标题: Python 使用BeautifulReport生成了两个HTML文件,请问怎么回事,一直找不到原因 [打印本页]

作者: 测试积点老人    时间: 2022-9-1 10:04
标题: Python 使用BeautifulReport生成了两个HTML文件,请问怎么回事,一直找不到原因
本人目前刚从事接口自动化测试,然后结合unitest和BeautifulReport生成测试报告,但是发现,运行case后,生成两个不同目录下的HTML文件,一个在指定目录下,另一个就意外生成了,一直查找不到原因
下面是运行代码部分
  1. from BeautifulReport import BeautifulReport
  2. import unittest
  3. import os
  4. from Common import BaseConfig
  5. from Common import SendEmail

  6. filename = BaseConfig.report_name
  7. report_dir = BaseConfig.report_dir
  8. html_path = report_dir + filename
  9. print(html_path)
  10. if not os.path.exists(report_dir):  # 检查目录是否存在
  11.     os.mkdir(report_dir)  # 不存在就创建该目录
  12. with open(BaseConfig.report_name, 'wb') as fl:  # 创建并打开测试文件
  13.     test_filepath = './TestCase/'               # 指定测试用例目录
  14.     discover = unittest.defaultTestLoader.discover(start_dir=test_filepath, pattern="test*.py")
  15.     BeautifulReport(discover).report(description='接口自动化测试', filename=filename, report_dir=report_dir)
  16.     fl.close()
  17. SendEmail.send_email(html_path)
复制代码
  1. BaseConfig文件
  2. 这是存放测试报告的指定部分
  3. ```python
  4. # 创建测试报告存放目录
  5. report_dir = r"D:\App\pythonProject\JOOAN_Cloud_API\Report"
  6. now_time = time.strftime("%m-%d_%H-%M-%S")
  7. # 测试报告名称
  8. report_name = r'\TestReport_' + now_time + '.html'
复制代码
結果生成了两个目录下的测试报告
文件1:指定目录下
[attach]142323[/attach]
文件2:意外生成的文件
[attach]142324[/attach]
查了好多资料都没有找到解决办法

作者: jingzizx    时间: 2022-9-2 14:07
生成了2个?




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2