1 Star 0 Fork 815

胡晓天/Python+pytest+allure+log+yaml+mysql+钉钉或企业微信通知

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run.py 2.84 KB
一键复制 编辑 原始数据 按行查看 历史
七月 提交于 2022-04-07 22:11 . '2.0版本更新'
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2022/3/29 15:01
# @Author : 余少琪
import os
import traceback
import pytest
from utils import project_name
from utils.logUtils.logControl import INFO
from utils 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
def run():
# 从配置文件中获取项目名称
try:
INFO.logger.info(
"""
_ _ _ _____ _
__ _ _ __ (_) / \\ _ _| |_ __|_ _|__ ___| |_
/ _` | '_ \\| | / _ \\| | | | __/ _ \\| |/ _ \\/ __| __|
| (_| | |_) | |/ ___ \\ |_| | || (_) | | __/\\__ \\ |_
\\__,_| .__/|_/_/ \\_\\__,_|\\__\\___/|_|\\___||___/\\__|
|_|
开始执行{}项目...
""".format(project_name)
)
pytest.main(['-s', '-W', 'ignore:Module already imported:pytest.PytestWarning',
'--alluredir', './report/tmp'])
"""
--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()
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 -p 9999")
except Exception:
# 如有异常,相关异常发送邮件
e = traceback.format_exc()
send_email = SendEmail()
send_email.error_mail(e)
raise
if __name__ == '__main__':
run()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/hu-xiaotian-qq/pytest-auto-api2.git
[email protected]:hu-xiaotian-qq/pytest-auto-api2.git
hu-xiaotian-qq
pytest-auto-api2
Python+pytest+allure+log+yaml+mysql+钉钉或企业微信通知
master

搜索帮助