Files
litellm/tests/image_gen_tests/conftest.py
T
2026-04-17 13:02:59 -07:00

23 lines
399 B
Python

import importlib
import os
import sys
import asyncio
import pytest
sys.path.insert(
0, os.path.abspath("../..")
) # Adds the parent directory to the system path
import litellm
import asyncio
@pytest.fixture(scope="session")
def event_loop():
try:
loop = asyncio.get_running_loop()
except RuntimeError:
loop = asyncio.new_event_loop()
yield loop
loop.close()