1 Star 1 Fork 0

子木仄言/IosAppGuiTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run_ios_app.py 831 Bytes
一键复制 编辑 原始数据 按行查看 历史
子木仄言 提交于 2021-07-30 12:04 . ios自动化框架
# -*- coding: utf-8 -*-
# -----------------------
# @Time : 2021/6/23 5:32 下午
# @Author : liyi03
# @File :run_ios_app.py
# @IDE :PyCharm
# -----------------------
import os
import pytest
from loguru import logger
from public.configer import base_path
from public.time_stamp import time_stamp
logger.add("./log/run.log", encoding="utf-8")
testcase_path = os.path.join(base_path, "testcase").replace("\\", '/')
def run_app():
pytest.main(["-s", "{}".format(testcase_path), "--alluredir", "report"])
# pytest.main(["-s", "{}/test_debug.py".format(testcase_path), "--alluredir", "report"]) # 运行指定模块下的用例,用于调式
# os.system('allure generate report/ -o report/html{}'.format(time_stamp())) # 调式模式下注释掉生成报告代码
if __name__ == '__main__':
run_app()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ze-yan/ios-app-gui-test.git
git@gitee.com:ze-yan/ios-app-gui-test.git
ze-yan
ios-app-gui-test
IosAppGuiTest
master

搜索帮助