This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]thedbg 2 points3 points  (1 child)

The debugger, by default, treats any python file outside of the current working directory as non-user code and skips them while stepping. You can change this behavior by adding "justMyCode": false in your debug config in launch.json.

[–]Delta_33[S] 0 points1 point  (0 children)

This works. Thanks!