Skip to content

Commit 463b677

Browse files
committed
Added vscode debug config
1 parent 9ba4c60 commit 463b677

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.vscode/launch.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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": "Debug python tests",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"module": "pytest",
12+
"console": "integratedTerminal",
13+
"args": ["-vv"],
14+
"justMyCode": true,
15+
"cwd": "${workspaceFolder}"
16+
},
17+
{
18+
"name": "Debug server with test policy",
19+
"type": "debugpy",
20+
"request": "launch",
21+
"module": "agents",
22+
"console": "integratedTerminal",
23+
"args": ["start-server", "test", "--port=8080", "--host=localhost", "--kwargs={}"],
24+
"justMyCode": true,
25+
"cwd": "${workspaceFolder}"
26+
},
27+
]
28+
}

0 commit comments

Comments
 (0)