You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tests like this have bitten me before: the call being tested could fail for many reasons and throw a ValueError. You probably are hoping it fails for a specific ValueError - I suggest using the match parameter in pytest.raises to narrow it down.
tests like this have bitten me before: the call being tested could fail for many reasons and throw a
ValueError
. You probably are hoping it fails for a specificValueError
- I suggest using thematch
parameter inpytest.raises
to narrow it down.Originally posted by @CamDavidsonPilon in #131
The text was updated successfully, but these errors were encountered: