Merge branch 'main' of github.com:HolyMagician03-UMich/pytest
This commit is contained in:
commit
10243b79d5
|
@ -1 +1 @@
|
|||
Text is no longer truncated in the ``short test summary info`` section when ``-vv`` is given.
|
||||
Text is no longer truncated in the ``short test summary info`` section when ``-vv`` is given.
|
||||
|
|
|
@ -2513,8 +2513,16 @@ def test_short_summary_with_verbose(monkeypatch: MonkeyPatch) -> None:
|
|||
|
||||
# NOTE: constructed, not sure if this is supported.
|
||||
mocked_pos = "nodeid::🉐::withunicode"
|
||||
check("🉐🉐🉐🉐🉐\n2nd line", 29, "FAILED nodeid::🉐::withunicode - 🉐🉐🉐🉐🉐\n2nd line")
|
||||
check("🉐🉐🉐🉐🉐\n2nd line", 80, "FAILED nodeid::🉐::withunicode - 🉐🉐🉐🉐🉐\n2nd line")
|
||||
check(
|
||||
"🉐🉐🉐🉐🉐\n2nd line",
|
||||
29,
|
||||
"FAILED nodeid::🉐::withunicode - 🉐🉐🉐🉐🉐\n2nd line",
|
||||
)
|
||||
check(
|
||||
"🉐🉐🉐🉐🉐\n2nd line",
|
||||
80,
|
||||
"FAILED nodeid::🉐::withunicode - 🉐🉐🉐🉐🉐\n2nd line",
|
||||
)
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
|
|
Loading…
Reference in New Issue