7 lines
121 B
Python
7 lines
121 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def media_storage(settings, tmpdir):
|
|
settings.MEDIA_ROOT = str(tmpdir)
|