11 lines
126 B
Python
11 lines
126 B
Python
|
|
"""
|
||
|
|
Pytest configuration for AI Service tests.
|
||
|
|
"""
|
||
|
|
|
||
|
|
import pytest
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture
|
||
|
|
def anyio_backend():
|
||
|
|
return "asyncio"
|