Commit 98a33624 by David Baumgold

Merge pull request #7884 from open-craft/eugeny/flaky-tests

Added flaky decorators to potentally flaky tests
parents 702663d9 fab12382
...@@ -4,6 +4,7 @@ End-to-end tests related to the cohort management on the LMS Instructor Dashboar ...@@ -4,6 +4,7 @@ End-to-end tests related to the cohort management on the LMS Instructor Dashboar
""" """
from datetime import datetime from datetime import datetime
from flaky import flaky
from pytz import UTC, utc from pytz import UTC, utc
from bok_choy.promise import EmptyPromise from bok_choy.promise import EmptyPromise
...@@ -718,6 +719,7 @@ class CohortDiscussionTopicsTest(UniqueCourseTest, CohortTestMixin): ...@@ -718,6 +719,7 @@ class CohortDiscussionTopicsTest(UniqueCourseTest, CohortTestMixin):
self.reload_page() self.reload_page()
self.assertEqual(self.cohort_management_page.get_cohorted_topics_count(key), cohorted_topics) self.assertEqual(self.cohort_management_page.get_cohorted_topics_count(key), cohorted_topics)
@flaky # TODO: fix this, see TNL-2120
def test_cohort_course_wide_discussion_topic(self): def test_cohort_course_wide_discussion_topic(self):
""" """
Scenario: cohort a course-wide discussion topic. Scenario: cohort a course-wide discussion topic.
......
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