1 Star 0 Fork 4

Echo/app自动化框架

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
start.py 1.69 KB
一键复制 编辑 原始数据 按行查看 历史
青城子 提交于 2022-03-07 18:11 . 多进程操作多台移动设备
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'tian'
__data__ = '2022/2/24 16:36'
# software: PyCharm
import time
import unittest
import re
from multiprocessing import Process
from adbutils import adb # 获取连接移动设备编号或ip
from conf import settings
from utils import send_email
from utils.reporthtml.HTMLTestRunner import HTMLTestRunner
from utils.CommonClass import PublicTools
from base.operatingapp import get_devices_list
def run_test_suite():
"""
运行测试用例集
:return:
"""
return unittest.defaultTestLoader.discover(r"./testsuite", pattern="*_test.py")
def institute(serial):
print("已经到了这里面了", serial)
get_devices_list(serial)
if re.search(r"\d+\.*", serial):
serial = serial.rsplit(":")[0]
else:
serial = serial
now = time.strftime("%Y-%m-%d %H-%M-%S")
file_name = r"{0}\{1}_{2}_rest.html".format(settings.DIR_PATH_DICT.get("report"), now, serial)
print(file_name)
with open(file_name, "wb") as f:
HTMLTestRunner(
stream=f,
title="安卓自动化功能测试报告",
description="运行移动设备:{0}".format(serial),
verbosity=2
).run(run_test_suite())
def get_devices():
rest = [d.serial for d in adb.device_list()]
print(rest)
return rest
def main():
for i in range(len(get_devices())):
serial = get_devices()[i]
p = Process(target=institute, args=(serial,))
p.start()
if __name__ == '__main__':
main()
# 发送邮件
# send_email.main_email()
# 删除10日前的测试报告和截图
pub_obj = PublicTools()
pub_obj.del_report()
pub_obj.del_screen()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/liu-long068/app-automation-framework.git
git@gitee.com:liu-long068/app-automation-framework.git
liu-long068
app-automation-framework
app自动化框架
master

搜索帮助