Skip to content

Commit 64e0ce9

Browse files
Restore launch.json
1 parent 3af49a1 commit 64e0ce9

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

.vscode/launch.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
{
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
25
"version": "0.2.0",
36
"configurations": [
4-
{
5-
"name": "Debug pytest test",
6-
"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-
}
7+
{
8+
"name": "Python: Current File",
9+
"type": "python",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal",
13+
"justMyCode": false
14+
}
1615
]
17-
}
16+
}

0 commit comments

Comments
 (0)