代码拉取完成,页面将自动刷新
同步操作将从 七月/Python+pytest+allure+log+yaml+mysql+钉钉企微通知接口自动化框架 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2022/3/29 15:01
# @Author : 余少琪
import os
import traceback
import pytest
from utils.otherUtils.get_conf_data import project_name, get_excel_report_switch
from utils.logUtils.logControl import INFO
from utils.otherUtils.get_conf_data import get_notification_type
from utils.noticUtils.weChatSendControl import WeChatSend
from utils.noticUtils.dingtalkControl import DingTalkSendMsg
from utils.noticUtils.sendmailControl import SendEmail
from Enums.notificationType_enum import NotificationType
from utils.noticUtils.feishuControl import FeiShuTalkChatBot
from utils.readFilesUtils.caseAutomaticControl import TestCaseAutomaticGeneration
from utils.otherUtils.allureDate.error_case_excel import ErrorCaseExcel
def run():
# 从配置文件中获取项目名称
try:
INFO.logger.info(
"""
_ _ _ _____ _
__ _ _ __ (_) / \\ _ _| |_ __|_ _|__ ___| |_
/ _` | '_ \\| | / _ \\| | | | __/ _ \\| |/ _ \\/ __| __|
| (_| | |_) | |/ ___ \\ |_| | || (_) | | __/\\__ \\ |_
\\__,_| .__/|_/_/ \\_\\__,_|\\__\\___/|_|\\___||___/\\__|
|_|
开始执行{}项目...
""".format(project_name)
)
# 判断现有的测试用例,如果未生成测试代码,则自动生成
TestCaseAutomaticGeneration().get_case_automatic()
pytest.main(['-s', '-W', 'ignore:Module already imported:pytest.PytestWarning',
'--alluredir', './report/tmp', "--clean-alluredir"])
"""
--reruns: 失败重跑次数
--count: 重复执行次数
-v: 显示错误位置以及错误的详细信息
-s: 等价于 pytest --capture=no 可以捕获print函数的输出
-q: 简化输出信息
-m: 运行指定标签的测试用例
-x: 一旦错误,则停止运行
--maxfail: 设置最大失败次数,当超出这个阈值时,则不会在执行测试用例
"--reruns=3", "--reruns-delay=2"
"""
os.system(r"allure generate ./report/tmp -o ./report/html --clean")
# 判断通知类型,根据配置发送不同的报告通知
if get_notification_type() == NotificationType.DEFAULT.value:
pass
elif get_notification_type() == NotificationType.DING_TALK.value:
DingTalkSendMsg().send_ding_notification()
elif get_notification_type() == NotificationType.WECHAT.value:
WeChatSend().send_wechat_notification()
if get_excel_report_switch():
ErrorCaseExcel().write_case()
elif get_notification_type() == NotificationType.EMAIL.value:
SendEmail().send_main()
elif get_notification_type() == NotificationType.FEI_SHU.value:
FeiShuTalkChatBot().post()
else:
raise ValueError("通知类型配置错误,暂不支持该类型通知")
# 程序运行之后,自动启动报告,如果不想启动报告,可注释这段代码
os.system(f"allure serve ./report/tmp -h 127.0.0.1 -p 9999")
except Exception:
# 如有异常,相关异常发送邮件
e = traceback.format_exc()
send_email = SendEmail()
send_email.error_mail(e)
raise
if __name__ == '__main__':
run()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。