25 lines
520 B
JSON
25 lines
520 B
JSON
{
|
|
"python.testing.unittestArgs": [
|
|
"-v",
|
|
"-s",
|
|
".",
|
|
"-p",
|
|
"test_*.py"
|
|
],
|
|
"python.testing.pytestEnabled": false,
|
|
"python.testing.unittestEnabled": true,
|
|
"python.analysis.enablePytestSupport": false,
|
|
"launch": {
|
|
|
|
"configurations": [{
|
|
"name": "Python: Debug Tests",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"purpose": ["debug-test"],
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
}],
|
|
"compounds": []
|
|
},
|
|
} |