How do I get PyCharm to show entire error diffs from pytest?
If you look closely into PyCharm sources, from the whole pytest output, PyCharm uses a single line the to parse the data for displaying in the Click to see difference dialog. This is the AssertionError: <message> line: def test_spam(): > assert v1 == v2 E AssertionError: assert {‘foo’: ‘bar’} == {‘foo’: ‘baz’} E Differing items: … Read more