Files
pyMCPBroker/.vscode/settings.json
2026-04-14 00:16:59 +02:00

18 lines
386 B
JSON

{
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestArgs": [
"tests",
"-q"
],
"python.testing.cwd": "${workspaceFolder}",
"python.analysis.extraPaths": [
"${workspaceFolder}"
],
"python.envFile": "${workspaceFolder}/.env",
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true
}
}