Debugger: How can I continue running UNTIL the next breakpoint

Hi,
How do I tell Pycharm to run the script up until a breakpoint is hit.
Say I have Breakpoint1 and Breakpoint2, and execution is stopped at Breakpoint1.

Now I need to go directly to Breakpoint2. I've read the online documentation and can't figure out.
If I click run, it runs through till the end.
0
2 comments
"Resume Program", usually bound to F9.
3
Or put a condition on breakpoint 1 that won't be true until after breakpoint 2 is hit.  

Why have breakpoint 1?  You could remove it, and replace it after hitting breakpoint 2.
-2

Please sign in to leave a comment.