Closed
Description
Even when using py.test -vvvv
, variables in stack traces are ellipsized when their representation gets "too long".
This is controlled by hard coded constants in py._io.saferepr.py::saferepr()
(and more constants in Python's reprlib
, which it inherits from), which is called from multiple locations in py._code/code.py
.
Proposed solution: use pretty printing instead, at high verbosity levels.