55d93894ac
feat(scripts): Add backfill script for content_hash in cache tables feat(scripts): Create recompute script for analysis_cache population test(tests): Implement comprehensive tests for analysis module functions fix(tests): Update CLI tests to assert errors on stderr instead of stdout fix(tests): Adjust MCP integration tests to pass context parameter correctly fix(tests): Modify service tests to return hash on save functions for consistency
30 lines
870 B
JSON
30 lines
870 B
JSON
{
|
|
"python.defaultInterpreterPath": "",
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestArgs": [
|
|
"tests"
|
|
],
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "charliermarsh.ruff"
|
|
},
|
|
"ruff.enable": true,
|
|
"chat.instructionsFilesLocations": {
|
|
".github/instructions": true
|
|
},
|
|
"github.copilot.chat.codeGeneration.useInstructionFiles": true,
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.pytest_cache": true,
|
|
"**/.mypy_cache": true,
|
|
"**/.ruff_cache": true
|
|
},
|
|
"chat.tools.terminal.autoApprove": {
|
|
"/root/projects/finn-mcp/.venv/bin/python": true,
|
|
"make": true,
|
|
".venv/bin/coverage": true,
|
|
".venv/bin/pytest": true,
|
|
"python -m pytest": true
|
|
}
|
|
} |