Open Issues Need Help
View All on GitHubAI Summary: Modify the test configuration to exclude unnecessary modules (likely routers only) from code coverage measurement during unit testing, similar to a previous project's solution. This will improve the accuracy and clarity of the test coverage report by focusing on the core application logic.
Python microservice providing user authentication against LDAP server and returning a JSON Web Token.
AI Summary: The task requires migrating the Python FastAPI microservice away from using Pydantic's `populate_by_name` function, which is deprecated. This involves identifying all instances of `populate_by_name` within the codebase and refactoring them to use alternative, recommended methods provided by Pydantic's documentation. Thorough testing will be necessary to ensure the functionality remains unchanged after the migration.
Python microservice providing user authentication against LDAP server and returning a JSON Web Token.