代码拉取完成,页面将自动刷新
# -*- 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 就是异常的用例
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。