Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Nov 17, 2023
1 parent f4ccb51 commit 1bc9ab4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions template/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,24 @@
"request": "launch",
"program": "${file} ${input:input}",
"console": "internalConsole"
},
{
//? Needs to be "pytest" adapter for now.
//? "debugpy" adapter isn't seen, to toggle "justMyCode" in test configuration
//? https://github.com/microsoft/vscode-python-debugger/issues/112
//? https://github.com/microsoft/vscode-python-debugger/issues/94
"name": "pytest",
//! Uncomment below to disable "justMyCode" when debugging. Comment out after.
// "purpose": ["debug-test"],
//!
"presentation": {
"hidden": true
},
"type": "python",
"request": "launch",
"program": "${file}",
"console": "internalConsole",
"justMyCode": false
}
]
}

0 comments on commit 1bc9ab4

Please sign in to comment.