mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-24 02:39:20 -05:00
34 lines
906 B
JSON
34 lines
906 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 Debugger: Django",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/manage.py",
|
|
"args": ["runserver"],
|
|
"django": true,
|
|
"justMyCode": true
|
|
},
|
|
{
|
|
"name": "Python: Debug Tests",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"purpose": [
|
|
"debug-test"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
// coverage and pytest can't both be running at the same time
|
|
"PYTEST_ADDOPTS": "--no-cov"
|
|
},
|
|
"django": true,
|
|
"justMyCode": true
|
|
},
|
|
]
|
|
}
|