diff --git a/common/test/acceptance/tests/discussion/test_cohort_management.py b/common/test/acceptance/tests/discussion/test_cohort_management.py index 921f471dbf..442707f042 100644 --- a/common/test/acceptance/tests/discussion/test_cohort_management.py +++ b/common/test/acceptance/tests/discussion/test_cohort_management.py @@ -19,7 +19,7 @@ from ...pages.studio.settings_group_configurations import GroupConfigurationsPag import uuid -@attr('shard_5') +@attr('shard_6') class CohortConfigurationTest(EventsTestMixin, UniqueCourseTest, CohortTestMixin): """ Tests for cohort management on the LMS Instructor Dashboard @@ -616,7 +616,7 @@ class CohortConfigurationTest(EventsTestMixin, UniqueCourseTest, CohortTestMixin self.assertEquals(expected_message, messages[0]) -@attr('shard_5') +@attr('shard_6') class CohortDiscussionTopicsTest(UniqueCourseTest, CohortTestMixin): """ Tests for cohorting the inline and course-wide discussion topics. @@ -907,7 +907,7 @@ class CohortDiscussionTopicsTest(UniqueCourseTest, CohortTestMixin): self.verify_discussion_topics_after_reload(self.inline_key, cohorted_topics_after) -@attr('shard_5') +@attr('shard_6') class CohortContentGroupAssociationTest(UniqueCourseTest, CohortTestMixin): """ Tests for linking between content groups and cohort in the instructor dashboard. diff --git a/common/test/acceptance/tests/studio/test_studio_library.py b/common/test/acceptance/tests/studio/test_studio_library.py index 0086024f69..3fbb58d6a6 100644 --- a/common/test/acceptance/tests/studio/test_studio_library.py +++ b/common/test/acceptance/tests/studio/test_studio_library.py @@ -13,7 +13,7 @@ from ...pages.studio.library import LibraryEditPage from ...pages.studio.users import LibraryUsersPage -@attr('shard_4') +@attr('shard_2') @ddt class LibraryEditPageTest(StudioLibraryTest): """ @@ -186,7 +186,7 @@ class LibraryEditPageTest(StudioLibraryTest): self.assertIn("Checkboxes", problem_block.name) -@attr('shard_4') +@attr('shard_5') @ddt class LibraryNavigationTest(StudioLibraryTest): """ diff --git a/common/test/acceptance/tests/video/test_studio_video_editor.py b/common/test/acceptance/tests/video/test_studio_video_editor.py index 8171f050f9..ad15488a90 100644 --- a/common/test/acceptance/tests/video/test_studio_video_editor.py +++ b/common/test/acceptance/tests/video/test_studio_video_editor.py @@ -7,7 +7,7 @@ from nose.plugins.attrib import attr from .test_studio_video_module import CMSVideoBaseTest -@attr('shard_2') +@attr('shard_6') class VideoEditorTest(CMSVideoBaseTest): """ CMS Video Editor Test Class diff --git a/common/test/acceptance/tests/video/test_studio_video_transcript.py b/common/test/acceptance/tests/video/test_studio_video_transcript.py index 77bc333614..d25e70c49f 100644 --- a/common/test/acceptance/tests/video/test_studio_video_transcript.py +++ b/common/test/acceptance/tests/video/test_studio_video_transcript.py @@ -22,7 +22,7 @@ from nose.plugins.attrib import attr from .test_studio_video_module import CMSVideoBaseTest -@attr('shard_2') +@attr('shard_6') class VideoTranscriptTest(CMSVideoBaseTest): """ CMS Video Transcript Test Class diff --git a/scripts/generic-ci-tests.sh b/scripts/generic-ci-tests.sh index 471109bfbe..c2ab5056e2 100755 --- a/scripts/generic-ci-tests.sh +++ b/scripts/generic-ci-tests.sh @@ -167,7 +167,11 @@ END ;; "6") - paver test_bokchoy --extra_args="-a shard_1=False,shard_2=False,shard_3=False,shard_4=False,shard_5=False --with-flaky" + paver test_bokchoy --extra_args="-a 'shard_6' --with-flaky" + ;; + + "7") + paver test_bokchoy --extra_args="-a shard_1=False,shard_2=False,shard_3=False,shard_4=False,shard_5=False,shard_6=False --with-flaky" ;; # Default case because if we later define another bok-choy shard on Jenkins