We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5034531 commit 8d76fb5Copy full SHA for 8d76fb5
.vscode/launch.json
@@ -4,13 +4,22 @@
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
"version": "0.2.0",
6
"configurations": [
7
+ {
8
+ "name": "Python: Current File",
9
+ "type": "python",
10
+ "request": "launch",
11
+ "program": "${file}",
12
+ "console": "integratedTerminal"
13
+ },
14
{
15
"name": "Debug Unit Test",
16
"type": "python",
17
"request": "launch",
18
"justMyCode": false,
19
"program": "${file}",
- "purpose": ["debug-test"],
20
+ "purpose": [
21
+ "debug-test"
22
+ ],
23
"console": "integratedTerminal",
24
"env": {
25
// The default config in setup.cfg's "[tool:pytest]" adds coverage.
@@ -20,4 +29,4 @@
29
},
30
}
31
]
-}
32
+}
0 commit comments