2 Star 0 Fork 0

海阔天空/TestPoll-framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run.py 573 Bytes
一键复制 编辑 原始数据 按行查看 历史
海阔天空 提交于 2021-07-09 17:31 . webUI自动化测试框架
# -*- coding:utf-8 -*-
import pytest
import time
import os
def get_reports_dir(r_name):
# 获取到 run.py 的完整路径
run_path = os.path.abspath(__file__)
# 获取到 run.py 的上级目录的路径
path = os.path.dirname(run_path)
# 路径拼接,得到最终的测试报告目录的完整路径
ret_dir = os.path.join(path, "reports", str(r_name))
return ret_dir
if __name__ == '__main__':
r_name = time.time()
pytest.main(["--alluredir=./reports/%s" % r_name])
os.system("allure serve %s" % get_reports_dir(r_name))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chao10141125/test-poll-framework.git
git@gitee.com:chao10141125/test-poll-framework.git
chao10141125
test-poll-framework
TestPoll-framework
master

搜索帮助