diff --git a/schema.prisma b/schema.prisma index d483e92e52..6eaeabe891 100644 --- a/schema.prisma +++ b/schema.prisma @@ -273,6 +273,7 @@ model LiteLLM_MCPServerTable { alias String? description String? url String? + spec_path String? transport String @default("sse") auth_type String? credentials Json? @default("{}") diff --git a/tests/proxy_unit_tests/test_audit_logs_proxy.py b/tests/proxy_unit_tests/test_audit_logs_proxy.py index ec7d42805d..1e095b2a38 100644 --- a/tests/proxy_unit_tests/test_audit_logs_proxy.py +++ b/tests/proxy_unit_tests/test_audit_logs_proxy.py @@ -112,6 +112,7 @@ def prisma_client(): return prisma_client +@pytest.mark.skip(reason="Requires reliable external DB connection (prisma).") @pytest.mark.asyncio() async def test_create_audit_log_in_db(prisma_client): print("prisma client=", prisma_client)