Commit bb8800d4 by Jay Zoldak

Disable intermittently failing ORA tests

parent db615248
...@@ -3,6 +3,8 @@ Tests for ORA (Open Response Assessment) through the LMS UI. ...@@ -3,6 +3,8 @@ Tests for ORA (Open Response Assessment) through the LMS UI.
""" """
import json import json
from unittest import skip
from bok_choy.promise import Promise, BrokenPromise from bok_choy.promise import Promise, BrokenPromise
from ..pages.lms.peer_confirm import PeerConfirmPage from ..pages.lms.peer_confirm import PeerConfirmPage
from ..pages.studio.auto_auth import AutoAuthPage from ..pages.studio.auto_auth import AutoAuthPage
...@@ -215,6 +217,7 @@ class AIAssessmentTest(OpenResponseTest): ...@@ -215,6 +217,7 @@ class AIAssessmentTest(OpenResponseTest):
'rubric_xml': load_data_str('ora_rubric.xml') 'rubric_xml': load_data_str('ora_rubric.xml')
} }
@skip('Intermittently failing, see ORA-342')
def test_ai_assessment(self): def test_ai_assessment(self):
""" """
Given I am viewing an AI-assessment problem that has a trained ML model Given I am viewing an AI-assessment problem that has a trained ML model
...@@ -260,6 +263,7 @@ class InstructorAssessmentTest(OpenResponseTest): ...@@ -260,6 +263,7 @@ class InstructorAssessmentTest(OpenResponseTest):
'rubric_xml': load_data_str('ora_rubric.xml') 'rubric_xml': load_data_str('ora_rubric.xml')
} }
@skip('Intermittently failing, see ORA-342')
def test_instructor_assessment(self): def test_instructor_assessment(self):
""" """
Given an instructor has graded my submission Given an instructor has graded my submission
......
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