Created
March 12, 2025 19:40
-
-
Save mike10004/b3f89f26a6c72f477b1e9fa36217898a to your computer and use it in GitHub Desktop.
VSCode launch.json content to debug Python unit tests and with justMyCode disabled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Python: Debug Unit Tests", | |
| "type": "debugpy", | |
| "request": "launch", | |
| "purpose": ["debug-test"], | |
| "console": "integratedTerminal", | |
| "justMyCode": false | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment