pairs_trading/.vscode/settings.json
2025-12-22 23:58:41 +00:00

23 lines
747 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,
"files.associations": {
"*.py": "python"
},
"python.testing.promptToConfigure": false,
"workbench.colorTheme": "Dracula Theme Soft"
}