mirror of
https://github.com/onyx-and-iris/slobs-cli.git
synced 2025-06-27 07:10:24 +01:00
10 lines
184 B
Python
10 lines
184 B
Python
"""pytest configuration for async tests using anyio."""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def anyio_backend():
|
|
"""Return the backend to use for async tests."""
|
|
return 'asyncio'
|