9 lines
137 B
Python
9 lines
137 B
Python
"""Shared pytest fixtures for backend tests."""
|
|
import asyncio
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def anyio_backend():
|
|
return "asyncio"
|