Skip to content

Instantly share code, notes, and snippets.

@mike10004
Created March 12, 2025 19:40
Show Gist options
  • Select an option

  • Save mike10004/b3f89f26a6c72f477b1e9fa36217898a to your computer and use it in GitHub Desktop.

Select an option

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
{
"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