Debugger not stepping into function in another file, it just cycles through breakpoints within the current file #1331
Closed
DarshilDholakia
started this conversation in
General
Replies: 1 comment
-
Figured out the correct configuration which now allows me to debug throughout the entire system if anyone else is coming across this issue too. The new launch.json configuration needs to be:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to debug what happens when I launch the below code in pysystemtrade/examples/introduction/prebakedsystems.py (I have commented out everything else in the prebakedsystems.py)
I have set breakpoints on all lines of code above and I have also set breakpoints within the system.accounts.portfolio() method. However, when I launch my debugger (the launch.json configuration for which is shown below) only the breakpoints in the prebakedsystems.py are hit and when I try to step into the system.accounts.portfolio() method it just stays in the prebakedsystems.py file.
As a sidenote, I have tried setting "justMyCode" to both false and true, still get the same outcome. Any ideas on why I cannot debug as normal and how I can fix this?
Beta Was this translation helpful? Give feedback.
All reactions