13 lines
230 B
Python
13 lines
230 B
Python
import pytest
|
|
from .db import *
|
|
from .faker import *
|
|
from .user import *
|
|
from .client import *
|
|
from .context import *
|
|
from .product import *
|
|
from .user_settings import *
|
|
|
|
|
|
@pytest.fixture
|
|
def anyio_backend():
|
|
return "asyncio"
|