Commit cc7939ad by fc

更新conftest信息

parent ef6a104b
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# FileName: conftest.py # FileName: conftest.py
# Author: xxxxxxx # Author: xxxxxxx
# Datetime: 2023/8/7 15:58 # Datetime: 2023/8/7 15:58
# Description: # Description:描述这个信息
# #
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
import pytest import pytest
...@@ -32,4 +32,4 @@ def pytest_collection_modifyitems(items): ...@@ -32,4 +32,4 @@ def pytest_collection_modifyitems(items):
# item表示每个测试用例,解决用例名称中文显示问题 # item表示每个测试用例,解决用例名称中文显示问题
for item in items: for item in items:
item.name = item.name.encode("utf-8").decode("unicode-escape") item.name = item.name.encode("utf-8").decode("unicode-escape")
item._nodeid = item._nodeid.encode("utf-8").decode("unicode-escape") item._nodeid = item._nodeid.encode("utf-8").decode("unicode-escape")
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment