加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
conftest.py 914 Bytes
一键复制 编辑 原始数据 按行查看 历史
lixuechengde@163.com 提交于 2022-08-08 20:28 . 添加默认conftest文件
import pytest
from py._xmlgen import html
@pytest.mark.hookwrapper
def pytest_runtest_makereport(item):
outcome = yield
try:
report = outcome.get_result()
report.nodeid = report.nodeid.encode("unicode_escape").decode("utf-8") # 解决乱码
report.description = str(item.function.__doc__)
except:
pass
def pytest_html_report_title(report):
report.title="测试报告"
def pytest_configure(config):
config._metadata.pop("JAVA_HOME")
@pytest.mark.optionalhook
def pytest_html_results_table_header(cells):
try:
cells.pop(-1) # 删除link列
cells.insert(1, html.th('Description'))
except:
pass
@pytest.mark.optionalhook
def pytest_html_results_table_row(report, cells):
try:
cells.pop(-1) # 删除link列
cells.insert(1, html.td(report.description))
except:
pass
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化