Files
django-mfa2/.vscode/launch.json
2023-12-26 17:36:26 +01:00

19 lines
620 B
JSON

{
// 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"]
}
]
}