Commit 57dde651 by Nimisha Asthagiri

Update ENABLED_CACHES values

parent fb120426
...@@ -218,7 +218,7 @@ class ModuleStoreIsolationMixin(CacheIsolationMixin): ...@@ -218,7 +218,7 @@ class ModuleStoreIsolationMixin(CacheIsolationMixin):
MODULESTORE = functools.partial(mixed_store_config, mkdtemp_clean(), {}) MODULESTORE = functools.partial(mixed_store_config, mkdtemp_clean(), {})
CONTENTSTORE = functools.partial(contentstore_config) CONTENTSTORE = functools.partial(contentstore_config)
ENABLED_CACHES = ['mongo_metadata_inheritance', 'loc_cache'] ENABLED_CACHES = ['default', 'mongo_metadata_inheritance', 'loc_cache']
__settings_overrides = [] __settings_overrides = []
__old_modulestores = [] __old_modulestores = []
__old_contentstores = [] __old_contentstores = []
......
...@@ -15,8 +15,6 @@ class TestGenerateCourseBlocks(ModuleStoreTestCase): ...@@ -15,8 +15,6 @@ class TestGenerateCourseBlocks(ModuleStoreTestCase):
""" """
Tests generate course blocks management command. Tests generate course blocks management command.
""" """
ENABLED_CACHES = ['default', 'mongo_metadata_inheritance', 'loc_cache']
def setUp(self): def setUp(self):
""" """
Create courses in modulestore. Create courses in modulestore.
......
...@@ -36,8 +36,6 @@ class CourseStructureTestCase(TransformerRegistryTestMixin, ModuleStoreTestCase) ...@@ -36,8 +36,6 @@ class CourseStructureTestCase(TransformerRegistryTestMixin, ModuleStoreTestCase)
""" """
Helper for test cases that need to build course structures. Helper for test cases that need to build course structures.
""" """
ENABLED_CACHES = ['default', 'mongo_metadata_inheritance', 'loc_cache']
def setUp(self): def setUp(self):
""" """
Create users. Create users.
......
...@@ -14,8 +14,6 @@ class CourseBlocksSignalTest(ModuleStoreTestCase): ...@@ -14,8 +14,6 @@ class CourseBlocksSignalTest(ModuleStoreTestCase):
""" """
Tests for the Course Blocks signal Tests for the Course Blocks signal
""" """
ENABLED_CACHES = ['default', 'mongo_metadata_inheritance', 'loc_cache']
def setUp(self): def setUp(self):
super(CourseBlocksSignalTest, self).setUp() super(CourseBlocksSignalTest, self).setUp()
self.course = CourseFactory.create() self.course = CourseFactory.create()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment