1 Star 5 Fork 3

TY/api_test_auto

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run.py 860 Bytes
一键复制 编辑 原始数据 按行查看 历史
TY 提交于 2021-04-02 22:36 . 优化
import os
import shutil
from config.path import *
from test.conftest import pytest
from tools.handle_common import logger
def run():
if os.path.exists(report_path):
shutil.rmtree(report_path)
logger.add(log_path, enqueue=True, encoding='utf-8')
pytest.main(args=['test/test_api.py', f'--alluredir={report_path}/data'])
# 自动以服务形式打开报告
# os.system(f'allure serve {report}/data')
# 本地生成报告
os.system(f'allure generate {report_path}/data -o {report_path}/html --clean')
# allure 调用allure程序 .
# generate 生成报告
# ./ reports / data 报告的xml数据源路径
# -o 参数名,后面跟html报告存储路径
# ./ reports / html 参数值,指定html报告存储路径
logger.success('报告已生成')
if __name__ == '__main__':
run()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mizuk/api_test_auto.git
[email protected]:mizuk/api_test_auto.git
mizuk
api_test_auto
api_test_auto
master

搜索帮助