#coding=utf-8
"""
===========================
Author:多测师_王sir
Time:2020/5/20 17:24
Company:上海多测师信息有限公司
===========================
"""
import unittest
import os
from common.handlepath import CASEDIR,REPORTDIR
from library.HTMLTestRunnerNew import HTMLTestRunner
from common.handle_email import send_email
import time
#定义生成报告的路径和报告的名称
now = time.strftime("%Y-%m-%d_%H_%M_%S") #加时间戳是为了让我们生成的报告不会出现重复
report_file = os.path.join(REPORTDIR,str(now)+"_api_report.html")
# print(report_file)
def auto_run():
# 第一步:创建套件
suite = unittest.TestSuite()
# 第二步:加载用例到套件
loader = unittest.TestLoader()
suite.addTest(loader.discover(CASEDIR))
# 第三步:执行用例
runner = HTMLTestRunner(stream=open(report_file, "wb"),
description="CMS平台接口自动化测试报告最终版",
title="CMS平台接口自动化测试报告",
tester="多测师_王sir"
)
runner.run(suite)
def send_mail():
send_email(report_file,"CMS平台接口自动化测试报告最终版")
if __name__ == '__main__':
auto_run() #运行用例发送报告