8 lines
113 B
Python
8 lines
113 B
Python
import pytest
|
|
from .db import *
|
|
from .faker import *
|
|
|
|
|
|
@pytest.fixture
|
|
def anyio_backend():
|
|
return "asyncio"
|