79644828

Date: 2025-05-30 03:01:39
Score: 0.5
Natty:
Report link

This is another way:

conftest.py
def pytest_collection_modifyitems(config, items):
    for item in items:
        item.name = codecs.decode(item.name, 'unicode_escape')
        item._nodeid = codecs.decode(item._nodeid, 'unicode_escape')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: walker