Skip to content

Commit c65ba1e

Browse files
committed
Update launch.json configurations to use debugpy
1 parent d4d8774 commit c65ba1e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.vscode/launch.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"configurations": [
77
{
88
"name": "Run Test Launcher",
9-
"type": "python",
9+
"type": "debugpy",
1010
"request": "launch",
1111
"program": "${workspaceFolder}/plotpy/tests/__init__.py",
1212
"console": "integratedTerminal",
@@ -19,7 +19,7 @@
1919
},
2020
{
2121
"name": "Run current file",
22-
"type": "python",
22+
"type": "debugpy",
2323
"request": "launch",
2424
"program": "${file}",
2525
"console": "integratedTerminal",
@@ -28,12 +28,13 @@
2828
"justMyCode": false,
2929
"pythonArgs": [
3030
"-W error::DeprecationWarning",
31+
"-W error::RuntimeWarning",
3132
],
3233
"env": {}
3334
},
3435
{
3536
"name": "Run current file (unattended)",
36-
"type": "python",
37+
"type": "debugpy",
3738
"request": "launch",
3839
"program": "${file}",
3940
"console": "integratedTerminal",

0 commit comments

Comments
 (0)