Spaces:
Configuration error
Configuration error
File size: 294 Bytes
447ebeb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import json
import os
import sys
import pytest
sys.path.insert(
0, os.path.abspath("../../..")
) # Adds the parent directory to the system path
from litellm.proxy._experimental.mcp_server.db import get_mcp_servers_by_team
def test_fetch_mcp_servers_by_team():
assert True == True
|