1 Star 0 Fork 1

pig/api_test_huace_framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
conftest.py 1.71 KB
一键复制 编辑 原始数据 按行查看 历史
pig 提交于 2022-04-28 18:37 . 第三次上传脚本执行脚本
# -*- coding: utf-8 -*-
import pytest
from system.DBManage import MysqlDB
from system.Config import *
@pytest.hookimpl(hookwrapper=True, tryfirst=True)
def pytest_runtest_makereport(item, call):
out = yield # 是通过yield关键字做轮循
mysql = MysqlDB(host=host, user=user, password=password, database=database, port=port)
report = out.get_result()
if report.when == "call": # 固定写法(固定过滤语句)
# 下面的if 是获取我们 info 标签中注册的内容:比如我在用例中注册的是 team principal
if "pytestmark" in item.function.__dict__:
for i in item.function.pytestmark:
if "info" in i.__dict__.values():
values = (report.location[0], report.location[-1], item.originalname, report.outcome,
i.__dict__["kwargs"]["team"], i.__dict__["kwargs"]["principal"])
mysql.change(
f"""insert into test_cases_1 (caseId, testId, test_name, result,team,principal) values {values};"""
)
else:
values = (report.location[0], report.location[-1], item.originalname, report.outcome)
mysql.change(
f"""insert into test_cases_1 (caseId, testId, test_name, result) values {values};"""
)
else:
values = (report.location[0], report.location[-1], item.originalname, report.outcome)
mysql.change(
f"""insert into test_cases_1 (caseId, testId, test_name, result) values {values};"""
)
# print("测试结果:", report.outcome) # 就是测试结果 非passed/skip 就是异常的用例
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/dadpig/api_test_huace_framework.git
git@gitee.com:dadpig/api_test_huace_framework.git
dadpig
api_test_huace_framework
api_test_huace_framework
master

搜索帮助