加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
runtest.py 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
import json
import os
import pytest
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import requests
def teardown_class():
"""
钉钉机器人接口
"""
cont = "自动化测试已完成,查看结果链接:http://192.168.1.11:63342" # 这里要包含新增机器人时候“安全设置”里的关键字,这里是“自动化测试”
dates = {
"msgtype": "text",
"text": {
"content": cont
}
}
url = "https://oapi.dingtalk.com/robot/send?access_token=8f7cd4d121b68e784d70889ac754344658db98a0f723d8c4c3430d45ac5e8a95"
# 输入上面生成的Webhook地址
headers = {
'Content-Type': 'application/json'
}
requests.post(url=url, data=json.dumps(dates), headers=headers)
if __name__ == '__main__':
print("即将执行pytest.main()")
pytest.main()
print("pytest.main()已执行完毕")
# 生成完整的Allure报告
print("即将执行os.system生成Allure报告")
#os.system("allure generate Report/data -o Report/html --clean")
print("os.system生成Allure报告已执行完毕")
# 启动本地HTTP服务器以便生成可访问的测试报告链接
#teardown_class()
# try:
# report_dir = "Report/html"
# os.chdir(report_dir)
# port = 63342 # 可根据需要选择其他未被占用的端口
# print(f"Allure测试报告可通过 http://192.168.1.11:{port} 访问")
# os.system("python -m http.server 63342")
# except Exception as e:
# print(f"启动本地HTTP服务器失败: {e}")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化