Backend/real_estate_search/conftest.py

15 lines
304 B
Python
Raw Normal View History

2023-02-18 17:44:52 +03:00
import pytest
from real_estate_search.users.models import User
from real_estate_search.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()