Skip to content

Commit

Permalink
refactor: Update VSCode launch configurations (type python -> `debu…
Browse files Browse the repository at this point in the history
…gpy`)
  • Loading branch information
pawamoy committed Feb 8, 2024
1 parent 2c0c9f1 commit d97d362
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions project/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.idea/
.vscode/
__pycache__/
*.py[cod]
dist/
Expand Down
4 changes: 2 additions & 2 deletions project/config/vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"configurations": [
{
"name": "python (current file)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "test",
"type": "python",
"type": "debugpy",
"request": "launch",
"module": "pytest",
"justMyCode": false,
Expand Down

0 comments on commit d97d362

Please sign in to comment.