I would like to use the built in pytest runner of pycharm together with the debugger without pre-configuring breakpoints. The problem is that exceptions in my test are caught by pytest so pycharm's post mortem debugger cannot handle the exception. I know using a breakpoint works but I would prefer not to run my test twice.
Found a way to do this in unittest, I would like to know if something like this exists in pytest.