Commit a29b0cdf by Jesse Zoldak

Merge pull request #7051 from edx/zoldak/skip-test

Skip intermittently failing test_course_publish_signal_firing PLAT-449
parents 0a8505cf cc71f63b
...@@ -8,6 +8,7 @@ import logging ...@@ -8,6 +8,7 @@ import logging
import ddt import ddt
import itertools import itertools
import mimetypes import mimetypes
from unittest import skip
from uuid import uuid4 from uuid import uuid4
# Mixed modulestore depends on django, so we'll manually configure some django settings # Mixed modulestore depends on django, so we'll manually configure some django settings
...@@ -1963,6 +1964,7 @@ class TestMixedModuleStore(CourseComparisonTest): ...@@ -1963,6 +1964,7 @@ class TestMixedModuleStore(CourseComparisonTest):
dest_store = self.store._get_modulestore_by_type(ModuleStoreEnum.Type.split) dest_store = self.store._get_modulestore_by_type(ModuleStoreEnum.Type.split)
self.assertCoursesEqual(source_store, source_course_key, dest_store, dest_course_id) self.assertCoursesEqual(source_store, source_course_key, dest_store, dest_course_id)
@skip("PLAT-449 XModule TestMixedModuleStore intermittent test failure")
@ddt.data(ModuleStoreEnum.Type.mongo, ModuleStoreEnum.Type.split) @ddt.data(ModuleStoreEnum.Type.mongo, ModuleStoreEnum.Type.split)
def test_course_publish_signal_firing(self, default): def test_course_publish_signal_firing(self, default):
with MongoContentstoreBuilder().build() as contentstore: with MongoContentstoreBuilder().build() as contentstore:
......
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