chore: update .gitignore and requirements for development

- Added new entries to .gitignore to exclude temporary files and training input datasets, ensuring a cleaner repository.
- Included type stubs for psycopg2 in requirements-dev.txt to enhance type checking support for database interactions.
- Refactored the run_training_test.py script to implement a structured approach for loading and validating training input JSON files, improving the robustness of the training workflow.
This commit is contained in:
vitor-aignosi
2026-05-26 09:38:24 -03:00
parent 64295d3855
commit 445fe643fe
5 changed files with 361 additions and 113 deletions

View File

@@ -7,6 +7,7 @@ ruff>=0.1.0 # Fast Python linter and formatter (replaces flake8, bl
mypy>=1.7.0 # Static type checker
bandit>=1.7.5 # Security vulnerability scanner
pandas-stubs>=2.0.0 # Type stubs for pandas
types-psycopg2>=2.9.0 # Type stubs for psycopg2
types-requests>=2.31.0 # Type stubs for requests
# Testing