Hide irrelevant frames on pytest failures

It makes failures easier to read, by showing only the relevant tests
instead of the helper functions.

https://doc.pytest.org/en/latest/example/simple.html#writing-well-integrated-assertion-helpers
This commit is contained in:
2021-06-26 18:37:44 +02:00
parent a7d7436929
commit 6f68a0d601
2 changed files with 4 additions and 0 deletions

View File

@ -42,6 +42,8 @@ from .numerics import (
)
from .specifications import Capabilities, IsupportTokens, Specifications
__tracebackhide__ = True # Hide from pytest tracebacks on test failure.
CHANNEL_JOIN_FAIL_NUMERICS = frozenset(
[
ERR_NOSUCHCHANNEL,

View File

@ -41,6 +41,7 @@ class ClientMock:
self, synchronize: bool = True, assert_get_one: bool = False, raw: bool = False
) -> List[message_parser.Message]:
"""actually returns List[str] in the rare case where raw=True."""
__tracebackhide__ = True # Hide from pytest tracebacks on test failure.
token: Optional[str]
if synchronize:
token = "synchronize{}".format(time.monotonic())
@ -108,6 +109,7 @@ class ClientMock:
raw: bool = False,
) -> message_parser.Message:
"""Returns str in the rare case where raw=True"""
__tracebackhide__ = True # Hide from pytest tracebacks on test failure.
while True:
if not self.inbuffer:
self.inbuffer = self.getMessages(