Removed bad references

This commit is contained in:
Andros Fenollosa 2025-01-24 10:00:46 +01:00
parent 0fdabb2ab4
commit 6a7abd3f95
3 changed files with 2 additions and 4 deletions

View File

@ -6,5 +6,3 @@ RUN pip3 install -r requirements.txt
# Entrypoint # Entrypoint
#ENTRYPOINT ["pytest", "test/infra/api/fastapi/test_client_fastapi.py", "-k", "_"] #ENTRYPOINT ["pytest", "test/infra/api/fastapi/test_client_fastapi.py", "-k", "_"]
#ENTRYPOINT ["pytest", "test/infra/authentication/keycloak/test_users_keycloak.py", "-k", "_"]
ENTRYPOINT ["pytest", "test/infra/api/fastapi/test_client_fastapi.py", "test/infra/api/fastapi/test_roles_fastapi.py", "test/infra/api/fastapi/test_users_fastapi.py", "test/infra/authentication/keycloak/test_users_keycloak.py", "test/infra/authentication/keycloak/test_app_keycloak.py", "test/infra/authentication/keycloak/test_connection_keycloak.py", "test/infra/authentication/keycloak/test_client_keycloak.py"]

View File

@ -2,7 +2,7 @@ import os
from enum import Enum from enum import Enum
from functools import wraps from functools import wraps
from core_auth.core.entity.ResponseTypes import ResponseTypes from src.core.entity.ResponseTypes import ResponseTypes
from src.core.use_case import ( from src.core.use_case import (
clients_use_case, clients_use_case,
users_use_case, users_use_case,

View File

@ -41,5 +41,5 @@ async def index():
return { return {
"type": ResponseTypes.SUCCESS, "type": ResponseTypes.SUCCESS,
"error": [], "error": [],
"data": "Welcome to the Core Auth API. Check the documentation at /docs.", "data": "Welcome to the API. Check the documentation at /docs.",
} }