-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What should raises
and RaisesGroup
raise?
#13286
Comments
|
|
Probably at this point any change to "_pytest.outcomes.Failed is not public API, so users shouldn't be catching that" -> unfortunately we have very many creative users, downstream libraries hoping to remain compatible with older versions of pytest, etc. Hyrum's Law again. I'd just decide on the cleanest behavior for |
The current behavior on the released pytest version is:
match
fails,pytest.raises
raises anAssertionError
pytest.raises
raisespytest.Failed
#13192 complicated this for several reasons, and having
RaisesGroup
adhere to point 2 was untenable. It became non-trivial to figure out why the "type" of an exceptiongroup with several nested exceptions and groups couldn't get matched against another group. It also became very weird when the "type" started to include matches itself, and it would've necessitated extra logic to figure out ifRaisesGroup(RaisesExc(ValueError, match="foo"))
failed because of the type or the match inRaisesExc
. Or in even weirder cases where it fails for both reasons:So
RaisesGroup
will raise an exception in all cases.We're then faced with how this should affect
pytest.raises
. #13192 made it raise anAssertionError
upon type difference (and ifcheck
fails), but this would likely be considered a breaking change. I personally think it's very different if a test fails because I got a completely unexpected exception, versus a different exception than the one I specifically expected in araises
block; but I don't think that's a huge win.The other downside of keeping current behavior is it becoming an arbitrary-but-for-historic-reasons difference between
raises
andRaisesGroup
.In either case, the original exception is accessible in the
__cause__
attribute and adapting code should be straightforward.I do also find the distinction between raising
pytest.Fail
versusAssertionError
quite arbitrary, and think they should be unified. My instinct would be for all failures to bepytest.Fail
, asAssertionError
usually signals to users that an explicitassert
has failed. We could make this change backward-compatible by having the exception raised inherit from bothAssertionError
andpytest.Fail
if we really want to.This also matters for
ExceptionInfo.match
, which ideally should share logic withraises
for string matching - but currently doesn't. It currently raises anAssertionError
on failure.tl;dr
raises
propagate the exception, or raiseAssertionError
, orFail
?RaisesGroup
raisepytest.Fail
orAssertionError
when failing a match, regardless of reason?The text was updated successfully, but these errors were encountered: