added .vscode/launch.json

This commit is contained in:
Oussama Jarrousse
2023-12-26 17:36:26 +01:00
parent 6ae4c2508c
commit 0075f84b29

19
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"stopOnEntry": false,
"justMyCode": false,
"env": {"PYTEST_ADDOPTS": "--no-cov"},
"purpose": ["debug-test"]
}
]
}