publik-django-templatetags/tests/conftest.py

11 lines
186 B
Python

import pytest
@pytest.fixture
def nocache(settings):
settings.CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
}
}