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 3af49a1 commit 64e0ce9Copy full SHA for 64e0ce9
.vscode/launch.json
@@ -1,17 +1,16 @@
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": [
- {
- "name": "Debug pytest test",
- "type": "python",
7
- "request": "launch",
8
- "module": "pytest",
9
- "args": [
10
- "tests/", // Replace with your actual test folder or file
11
- "-s"
12
- ],
13
- "console": "integratedTerminal",
14
- "justMyCode": false
15
- }
+ {
+ "name": "Python: Current File",
+ "type": "python",
+ "request": "launch",
+ "program": "${file}",
+ "console": "integratedTerminal",
+ "justMyCode": false
+ }
16
]
17
+}
0 commit comments