happy-family-315
07/01/2022, 2:23 PMrun --debug-adapter
on the target django:manage, which sets the field run_in_sandbox
to True
. This will likely cause your breakpoints to not be hit, as your code will be run under the sandbox's path.`
My breakpoints do not work when debugging tests or debugging a normal run. Is there a way to make that work? Currently I am using PANTS_SHA: 918ac2f68182a8d308113eff336f55dcdbc84847bitter-ability-32190
07/01/2022, 2:38 PMhappy-family-315
07/01/2022, 2:49 PMbitter-ability-32190
07/01/2022, 2:52 PMpex_binary
target for that file (unless you really want to package it)
• Set the run_goal_use_sandbox
field on the python_source
to False
• Set [GLOBAL].use_deprecated_pex_binary_run_semantics
to True
(use the current semantics) or when you're ready, bump it to False
happy-family-315
07/07/2022, 12:16 PM