代码拉取完成,页面将自动刷新
# coding=utf-8
import sys
sys.path.append('/home/selenium_python')
from HTMLTestRunner import HTMLTestRunner
from config import globalparam
import unittest
import time
test_dir = "./test_case"
discover = unittest.defaultTestLoader.discover(test_dir, pattern="*sta.py")
if __name__ == "__main__":
# Get the current time in a certain format
now = time.strftime("%Y-%m-%d-%H-%M-%S")
# Define the report storage path
filename = globalparam.report_path + "\\" + now + "result.html"
fp = open(filename, "wb")
# Define test report
runner = HTMLTestRunner(stream=fp, title="测试报告", description="用例执行情况:")
runner.run(discover)
fp.close()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。