From f3498c5de860fe5004e61ef0c54ce7a6a7e06fcb Mon Sep 17 00:00:00 2001 From: Jesse Zoldak Date: Tue, 6 Jun 2017 12:11:08 -0400 Subject: [PATCH 1/3] Skip test_edit_course_wiki --- common/test/acceptance/tests/lms/test_lms.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/test/acceptance/tests/lms/test_lms.py b/common/test/acceptance/tests/lms/test_lms.py index 032c814b4d..1e996ddfab 100644 --- a/common/test/acceptance/tests/lms/test_lms.py +++ b/common/test/acceptance/tests/lms/test_lms.py @@ -9,7 +9,6 @@ from unittest import skip import pytz from bok_choy.promise import EmptyPromise -from flaky import flaky from nose.plugins.attrib import attr from common.test.acceptance.fixtures.course import CourseFixture, CourseUpdateDesc, XBlockFixtureDesc @@ -564,7 +563,7 @@ class CourseWikiTest(UniqueCourseTest): self.course_wiki_edit_page.wait_for_page() @attr(shard=1) - @flaky # EDUCATOR-511 + @skip # EDUCATOR-511 def test_edit_course_wiki(self): """ Wiki page by default is editable for students. From f843736a5e1fb7993d22c59de0c5a857a2aea0c5 Mon Sep 17 00:00:00 2001 From: Jesse Zoldak Date: Tue, 6 Jun 2017 12:15:42 -0400 Subject: [PATCH 2/3] Mark test_can_reset_attempts test as flaky --- .../test/acceptance/tests/lms/test_lms_instructor_dashboard.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py b/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py index 259bc6b675..2ec15d9d32 100644 --- a/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py +++ b/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py @@ -5,6 +5,7 @@ End-to-end tests for the LMS Instructor Dashboard. import ddt from bok_choy.promise import EmptyPromise +from flaky import flaky from nose.plugins.attrib import attr from common.test.acceptance.fixtures.certificates import CertificateConfigFixture @@ -424,6 +425,7 @@ class ProctoredExamsTest(BaseInstructorDashboardTest): # Then, the added record should be visible self.assertTrue(allowance_section.is_allowance_record_visible) + @flaky # See EDUCATOR-551 def test_can_reset_attempts(self): """ Make sure that Exam attempts are visible and can be reset. From b8ca90eaab6a94928eb384377d53030894608e91 Mon Sep 17 00:00:00 2001 From: Jesse Zoldak Date: Tue, 6 Jun 2017 12:18:28 -0400 Subject: [PATCH 3/3] Mark test_rescore_nonrescorable bok choy test as flaky --- .../test/acceptance/tests/lms/test_lms_instructor_dashboard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py b/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py index 2ec15d9d32..e580dcbc2e 100644 --- a/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py +++ b/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py @@ -1374,6 +1374,7 @@ class StudentAdminTest(BaseInstructorDashboardTest): self.username, _ = self.log_in_as_instructor() self.instructor_dashboard_page = self.visit_instructor_dashboard() + @flaky # See EDUCATOR-552 def test_rescore_nonrescorable(self): student_admin_section = self.instructor_dashboard_page.select_student_admin(StudentSpecificAdmin) student_admin_section.set_student_email_or_username(self.username)