Is there a way to run debugpy from the terminal without manually launching the client? #25842
Unanswered
Keto D. Zhang (ketozhang)
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
To use debugpy in the terminal, you have to do three steps:
Prerequisite
{ "version": "0.2.0", "configurations": [ { "name": "Python Debugger: Remote Attach", "type": "debugpy", "request": "attach", "connect": { "host": "localhost", "port": 5678 }, "pathMappings": [ { "localRoot": "${workspaceFolder}", "remoteRoot": "." } ] } ] }Launch your job with debugpy server in the terminal.
Launch the debugger from 'Run and Debug' menu for the debugpy client
Is there a way to skip step 3? This is a much more streamlined approach when wanting to run pytest in the terminal (I don't like using the Testing UI)
All reactions