mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-26 02:53:49 +03:00
15 lines
282 B
Python
15 lines
282 B
Python
import pytest
|
|
|
|
from akarpov.users.models import User
|
|
from akarpov.users.tests.factories import UserFactory
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def media_storage(settings, tmpdir):
|
|
settings.MEDIA_ROOT = tmpdir.strpath
|
|
|
|
|
|
@pytest.fixture
|
|
def user(db) -> User:
|
|
return UserFactory()
|