Skip to content

Commit 3608feb

Browse files
committed
add launch.json for debugging
1 parent f196983 commit 3608feb

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.vscode/launch.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python Debugger: Current File",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal"
13+
},
14+
{
15+
"name": "Python Debugger: Pytest Functional Tests",
16+
"type": "debugpy",
17+
"request": "launch",
18+
"module": "pytest",
19+
"args": ["functional-tests"],
20+
"console": "integratedTerminal"
21+
}
22+
]
23+
}

0 commit comments

Comments
 (0)