-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimspector.json
53 lines (50 loc) · 1.29 KB
/
.vimspector.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"configurations": {
"run": {
"adapter": "debugpy",
"variables": {
"Python": {
// "shell": "/usr/bin/sh -c /home/dimfred/scripts/run/python3.sh"
// "shell": "/usr/bin/sh -c /home/dimfred/scripts/run/python37.sh"
// "shell": "/usr/bin/sh -c /home/dimfred/scripts/run/python38.sh"
"shell": "/usr/bin/sh -c /home/dimfred/scripts/run/python39.sh"
// "shell": "/usr/bin/sh -c /home/dimfred/scripts/run/python310.sh"
}
},
"configuration": {
"type": "python",
"autoselect": false,
"request": "launch",
"stopOnEntry": false,
"justMyCode": false,
"console": "integratedTerminal",
"python": "$Python",
"cwd": "${workspaceFolder}",
"environment": [],
"module": "pytest",
// "program": "${workspaceFolder}/",
"args": ["-s"]
},
"breakpoints": {
"exception": {
"raised": "N",
"uncaught": "Y"
}
}
}
// ,
//"attach": {
// "adapter": "multi-session",
// "configuration": {
// "request": "attach"
// },
// "breakpoints": {
// "exception": {
// "raised": "N",
// "uncaught": ""
// }
// }
//}
}
}
// vim:ft=jsonc