MCPcopy
hub / github.com/pytest-dev/pytest / deserialize_repr_traceback

Function deserialize_repr_traceback

src/_pytest/reports.py:648–652  ·  view source on GitHub ↗
(repr_traceback_dict)

Source from the content-addressed store, hash-verified

646 return reprentry
647
648 def deserialize_repr_traceback(repr_traceback_dict):
649 repr_traceback_dict["reprentries"] = [
650 deserialize_repr_entry(x) for x in repr_traceback_dict["reprentries"]
651 ]
652 return ReprTraceback(**repr_traceback_dict)
653
654 def deserialize_repr_crash(repr_crash_dict: dict[str, Any] | None):
655 if repr_crash_dict is not None:

Callers 1

_report_kwargs_from_jsonFunction · 0.85

Calls 2

ReprTracebackClass · 0.90
deserialize_repr_entryFunction · 0.85

Tested by

no test coverage detected