Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

Is there a way to catch unittest exceptions with PyCharm?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.