
    def test_fail():
        """A failing test with traceback."""
        x = 1
        y = 2
>       assert x == y  # This will fail
E       assert 1 == 2
E         -1
E         +2

/tmp/tmpqlkrvb1l.py:12: AssertionError
