26 lines
866 B
JSON
26 lines
866 B
JSON
{
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestArgs": [
|
|
"unittests"
|
|
],
|
|
"python.testing.cwd": "${workspaceFolder}",
|
|
"python.testing.autoTestDiscoverOnSaveEnabled": true,
|
|
"python.defaultInterpreterPath": "/usr/bin/python3",
|
|
"python.testing.pytestPath": "python3",
|
|
"python.analysis.extraPaths": [
|
|
"${workspaceFolder}",
|
|
"${workspaceFolder}/..",
|
|
"${workspaceFolder}/unittests"
|
|
],
|
|
"python.envFile": "${workspaceFolder}/.env",
|
|
"python.testing.debugPort": 3000,
|
|
"python.linting.enabled": true,
|
|
"python.linting.pylintEnabled": false,
|
|
"python.linting.mypyEnabled": true,
|
|
"files.associations": {
|
|
"*.py": "python"
|
|
},
|
|
"python.testing.promptToConfigure": false,
|
|
"workbench.colorTheme": "Dracula Theme Soft"
|
|
} |