szp1234 发表于 2023-4-2 20:15:36

执行如下代码报错,看看哪位大神协助下,谢谢:Time Elapsed: 0:00:00.010000

import unittest
from HTMLTestRunner import HTMLTestRunner
import time
import os

# 定义输出的文件位置和名字
DIR = os.path.dirname(os.path.abspath(__file__))
now = time.strftime("%Y%m%d%H%M", time.localtime(time.time()))

filename = now + "report.html"
# discover方法执行测试套件
testsuite = unittest.defaultTestLoader.discover(
    start_dir='./testsuites',
    pattern='*case.py',
    top_level_dir=None
)

with open(DIR + '/test_report/' + filename, 'w') as f:
    runner = HTMLTestRunner(
      stream=f,
      verbosity=2,
      title='gateway UI report',
      description='执行情况'
    )

    runner.run(testsuite)
页: [1]
查看完整版本: 执行如下代码报错,看看哪位大神协助下,谢谢:Time Elapsed: 0:00:00.010000