1 Star 0 Fork 1

davice_li/api_test_myself_frame

forked from pig/api_test_myself_frame 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
conftest.py 1021 Bytes
一键复制 编辑 原始数据 按行查看 历史
pig 提交于 2022-04-26 07:17 . 第二次上次 连接数据库操作
# -*- coding: utf-8 -*-
import pytest
from sql_connect import Session
@pytest.hookimpl(hookwrapper=True, tryfirst=True)
def pytest_runtest_makereport(item, call):
out = yield # 是通过yield关键字做轮循
# 假设时间参数,我们使用 time.time()
report = out.get_result()
if report.when == "call": # 固定写法(固定过滤语句)
# 大概也要先知道数据据库中的列表都该填写什么 不然获取到的数据也不知道怎么填
# caseId, testId, caseName, testResult
print(report.__dict__) # 观察数据的内容
print(report.outcome) # 查询报告结果
with Session(host='127.0.0.1',database='test_weekly_report',user='root',password='q0179884652') as session:
sql_ = f"""insert into test_cases(CaseName,CaseID,TestName,TestResult) values ('{report.location[0]}','{report.nodeid}','{report.location[-1]}','{report.outcome}')"""
session.change(sql_)
# print(res)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/davice_li/api_test_myself_frame.git
git@gitee.com:davice_li/api_test_myself_frame.git
davice_li
api_test_myself_frame
api_test_myself_frame
master

搜索帮助