Skip to content

Commit

Permalink
VS Code debug launch configurations: updated the launch configuration…
Browse files Browse the repository at this point in the history
… for debugging tests
  • Loading branch information
ClaasRostock committed Dec 27, 2023
1 parent d879cc3 commit 9afee26
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,21 @@
"version": "0.2.0",
"configurations": [
{
"name": "Debug Unit Test",
"name": "Python: Debug Tests",
"type": "python",
"request": "launch",
"program": "${file}",
"purpose": [
"debug-test"
],
"console": "integratedTerminal",
"env": {
"PYTEST_ADDOPTS": "--no-cov"
},
"autoReload": {
"enable": true
},
"justMyCode": false,
"program": "${file}"
},
{
"name": "Python: Current File, cwd = file dir, envFile",
Expand Down

0 comments on commit 9afee26

Please sign in to comment.