Skip to content

Commit 1cb2cbe

Browse files
committed
🔧 chore(vscode): remove coverage-gutters extension && switch python type to debugpy
1 parent 0922099 commit 1cb2cbe

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.vscode/extensions.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"ms-python.python",
44
"ms-python.pylint",
55
"charliermarsh.ruff",
6-
"ryanluker.vscode-coverage-gutters",
76
"tamasfe.even-better-toml"
87
]
98
}

.vscode/launch.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"configurations": [
44
{
55
"name": "Python: Current File",
6-
"type": "python",
6+
"type": "debugpy",
77
"request": "launch",
88
"program": "${file}",
99
"console": "integratedTerminal",
1010
"justMyCode": true
1111
},
1212
{
1313
"name": "Python: Run Tests",
14-
"type": "python",
14+
"type": "debugpy",
1515
"request": "launch",
1616
"program": "${workspaceFolder}/venv/bin/pytest",
1717
"args": [
@@ -24,7 +24,7 @@
2424
},
2525
{
2626
"name": "Python: Run Unit Tests",
27-
"type": "python",
27+
"type": "debugpy",
2828
"request": "launch",
2929
"program": "${workspaceFolder}/venv/bin/pytest",
3030
"args": [
@@ -37,7 +37,7 @@
3737
},
3838
{
3939
"name": "Python: Run Integration Tests",
40-
"type": "python",
40+
"type": "debugpy",
4141
"request": "launch",
4242
"program": "${workspaceFolder}/venv/bin/pytest",
4343
"args": [
@@ -50,7 +50,7 @@
5050
},
5151
{
5252
"name": "TGIT: Version Command",
53-
"type": "python",
53+
"type": "debugpy",
5454
"request": "launch",
5555
"program": "${workspaceFolder}/tgit/cli.py",
5656
"args": [

0 commit comments

Comments
 (0)