Commit c3a1905a by Jesse Zoldak Committed by GitHub

Merge pull request #15251 from edx/zoldak/skip-flaky-tests

Skip and mark tests flaky - top offenders from Provably Flaky Test Methods splunk report
parents 27b2b0e9 b8ca90ea
...@@ -9,7 +9,6 @@ from unittest import skip ...@@ -9,7 +9,6 @@ from unittest import skip
import pytz import pytz
from bok_choy.promise import EmptyPromise from bok_choy.promise import EmptyPromise
from flaky import flaky
from nose.plugins.attrib import attr from nose.plugins.attrib import attr
from common.test.acceptance.fixtures.course import CourseFixture, CourseUpdateDesc, XBlockFixtureDesc from common.test.acceptance.fixtures.course import CourseFixture, CourseUpdateDesc, XBlockFixtureDesc
...@@ -564,7 +563,7 @@ class CourseWikiTest(UniqueCourseTest): ...@@ -564,7 +563,7 @@ class CourseWikiTest(UniqueCourseTest):
self.course_wiki_edit_page.wait_for_page() self.course_wiki_edit_page.wait_for_page()
@attr(shard=1) @attr(shard=1)
@flaky # EDUCATOR-511 @skip # EDUCATOR-511
def test_edit_course_wiki(self): def test_edit_course_wiki(self):
""" """
Wiki page by default is editable for students. Wiki page by default is editable for students.
......
...@@ -5,6 +5,7 @@ End-to-end tests for the LMS Instructor Dashboard. ...@@ -5,6 +5,7 @@ End-to-end tests for the LMS Instructor Dashboard.
import ddt import ddt
from bok_choy.promise import EmptyPromise from bok_choy.promise import EmptyPromise
from flaky import flaky
from nose.plugins.attrib import attr from nose.plugins.attrib import attr
from common.test.acceptance.fixtures.certificates import CertificateConfigFixture from common.test.acceptance.fixtures.certificates import CertificateConfigFixture
...@@ -424,6 +425,7 @@ class ProctoredExamsTest(BaseInstructorDashboardTest): ...@@ -424,6 +425,7 @@ class ProctoredExamsTest(BaseInstructorDashboardTest):
# Then, the added record should be visible # Then, the added record should be visible
self.assertTrue(allowance_section.is_allowance_record_visible) self.assertTrue(allowance_section.is_allowance_record_visible)
@flaky # See EDUCATOR-551
def test_can_reset_attempts(self): def test_can_reset_attempts(self):
""" """
Make sure that Exam attempts are visible and can be reset. Make sure that Exam attempts are visible and can be reset.
...@@ -1372,6 +1374,7 @@ class StudentAdminTest(BaseInstructorDashboardTest): ...@@ -1372,6 +1374,7 @@ class StudentAdminTest(BaseInstructorDashboardTest):
self.username, _ = self.log_in_as_instructor() self.username, _ = self.log_in_as_instructor()
self.instructor_dashboard_page = self.visit_instructor_dashboard() self.instructor_dashboard_page = self.visit_instructor_dashboard()
@flaky # See EDUCATOR-552
def test_rescore_nonrescorable(self): def test_rescore_nonrescorable(self):
student_admin_section = self.instructor_dashboard_page.select_student_admin(StudentSpecificAdmin) student_admin_section = self.instructor_dashboard_page.select_student_admin(StudentSpecificAdmin)
student_admin_section.set_student_email_or_username(self.username) student_admin_section.set_student_email_or_username(self.username)
......
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