mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
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:
@ -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,
|
||||
|
@ -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(
|
||||
|
Reference in New Issue
Block a user