Disabled flakey open-ended tests

This commit is contained in:
Will Daly
2014-01-27 15:21:55 -05:00
parent b67a3a8ab6
commit 0277cec600

View File

@@ -265,6 +265,9 @@ class OpenEndedModuleTest(unittest.TestCase):
self.openendedmodule = OpenEndedModule(self.test_system, self.location,
self.definition, self.descriptor, self.static_data, self.metadata)
# Disabled 1/27/14 due to flakiness in master
# Should not be comparing the submission time to the current time!
@unittest.skip
def test_message_post(self):
get = {'feedback': 'feedback text',
'submission_id': '1',
@@ -289,6 +292,9 @@ class OpenEndedModuleTest(unittest.TestCase):
state = json.loads(self.openendedmodule.get_instance_state())
self.assertIsNotNone(state['child_state'], OpenEndedModule.DONE)
# Disabled 1/27/14 due to flakiness in master
# Should not be comparing the submission time to the current time!
@unittest.skip
def test_send_to_grader(self):
submission = "This is a student submission"
qtime = datetime.strftime(datetime.now(UTC), xqueue_interface.dateformat)