Update _test_settings fixture to work with Django 4.1 and 4.2 (#507)
This commit is contained in:
parent
9a0008db06
commit
1ac6519316
|
@ -59,7 +59,9 @@ kwIDAQAB
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
def _test_settings(settings):
|
def _test_settings(settings):
|
||||||
settings.STATICFILES_STORAGE = None
|
settings.STATICFILES_STORAGE = (
|
||||||
|
"django.contrib.staticfiles.storage.StaticFilesStorage"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
|
|
Loading…
Reference in New Issue