7 lines
91 B
Python
7 lines
91 B
Python
|
|
import pytest
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture(scope="session")
|
||
|
|
def anyio_backend():
|
||
|
|
return "asyncio"
|