feat: Enhance logging initialization and error handling, add new tasks for testing dependencies, and improve data filtering logic

This commit is contained in:
William Valentin
2025-08-08 15:53:37 -07:00
parent 5fb552268c
commit 15bdc75101
9 changed files with 350 additions and 131 deletions

17
.vscode/tasks.json vendored
View File

@@ -28,6 +28,23 @@
"group": "test",
"isBackground": false,
"problemMatcher": []
},
{
"label": "Install Test Deps",
"type": "shell",
"command": "python",
"args": [
"-m",
"pip",
"install",
"-r",
"requirements.txt"
],
"isBackground": false,
"problemMatcher": [
"$tsc"
],
"group": "build"
}
]
}