10 lines
204 B
Python
10 lines
204 B
Python
"""Pytest configuration and shared fixtures."""
|
|
import pytest
|
|
|
|
|
|
# Add any shared fixtures here
|
|
@pytest.fixture
|
|
def anyio_backend():
|
|
"""Configure anyio backend for async tests."""
|
|
return "asyncio"
|