Removed bad references
This commit is contained in:
parent
0fdabb2ab4
commit
6a7abd3f95
@ -6,5 +6,3 @@ RUN pip3 install -r requirements.txt
|
||||
|
||||
# Entrypoint
|
||||
#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"]
|
||||
|
@ -2,7 +2,7 @@ import os
|
||||
from enum import Enum
|
||||
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 (
|
||||
clients_use_case,
|
||||
users_use_case,
|
||||
|
@ -41,5 +41,5 @@ async def index():
|
||||
return {
|
||||
"type": ResponseTypes.SUCCESS,
|
||||
"error": [],
|
||||
"data": "Welcome to the Core Auth API. Check the documentation at /docs.",
|
||||
"data": "Welcome to the API. Check the documentation at /docs.",
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user