pytest-解决ids控制台编码问题的方法
如上截图:看到了一些Unicode编码,这里其实是ids的内容,因为是中文,所以默认这里显示Unicode编码。为了显示中文,需要在测试项目的根目录下
- 方法一:创建一个Pytest的配置文件pytest.ini,在其中添加如下代码:
[pytest]
disable_test_id_escaping_and_forfeit_all_rights_to_community_support = True
- 方法二:或者在conftest.py文件中加入如下内容
# def pytest_collection_modifyitems(items): # """ # 测试用例收集完成时,将收集到的item的name和nodeid的中文显示在控制台上 # """ # for item in items: # item.name = item.name.encode("utf-8").decode("unicode_escape") # item._nodeid = item.nodeid.encode("utf-8").decode("unicode_escape")
本文来自博客园,作者:术科术,转载请注明原文链接:https://www.cnblogs.com/shukeshu/p/17310009.html