Skip to content
Advertisement

How to properly assert that an exception gets raised in pytest?

Code:

JavaScript

Output:

JavaScript

How to make pytest print traceback, so I would see where in the whatever function an exception was raised?

Advertisement

Answer

pytest.raises(Exception) is what you need.

Code

JavaScript

Output

JavaScript

Note that e_info saves the exception object so you can extract details from it. For example, if you want to check the exception call stack or another nested exception inside.

Advertisement