Skip to content

Commit 81bdf4f

Browse files
authored
Create launch.json
1 parent c10d1ee commit 81bdf4f

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.vscode/launch.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "0.1.0",
3+
"configurations": [
4+
{
5+
"name": "Python: Debug Tests",
6+
"type": "python",
7+
"request": "launch",
8+
"program": "${file}",
9+
"purpose": [
10+
"debug-test"
11+
],
12+
"console": "integratedTerminal",
13+
"justMyCode": false,
14+
"env": {
15+
"PYTEST_ADDOPTS": "--no-cov -n0 --dist no"
16+
}
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)