14 lines
411 B
Python
14 lines
411 B
Python
import pytest
|
|
from fooder.test.fixtures.db import *
|
|
from fooder.test.fixtures.faker import *
|
|
from fooder.test.fixtures.user import *
|
|
from fooder.test.fixtures.client import *
|
|
from fooder.test.fixtures.context import *
|
|
from fooder.test.fixtures.product import *
|
|
from fooder.test.fixtures.user_settings import *
|
|
from fooder.test.fixtures.diary import *
|
|
|
|
|
|
@pytest.fixture
|
|
def anyio_backend():
|
|
return "asyncio"
|