Commit 06351ebd by Jesse Zoldak

Mark test as flaky TNL-4683

parent 4f71e263
...@@ -4,8 +4,9 @@ End-to-end tests for Student's Profile Page. ...@@ -4,8 +4,9 @@ End-to-end tests for Student's Profile Page.
""" """
from contextlib import contextmanager from contextlib import contextmanager
from datetime import datetime
from bok_choy.web_app_test import WebAppTest from bok_choy.web_app_test import WebAppTest
from datetime import datetime
from flaky import flaky
from nose.plugins.attrib import attr from nose.plugins.attrib import attr
from ...pages.common.logout import LogoutPage from ...pages.common.logout import LogoutPage
...@@ -296,6 +297,7 @@ class OwnLearnerProfilePageTest(LearnerProfileTestMixin, WebAppTest): ...@@ -296,6 +297,7 @@ class OwnLearnerProfilePageTest(LearnerProfileTestMixin, WebAppTest):
self.verify_profile_page_is_private(profile_page) self.verify_profile_page_is_private(profile_page)
self.verify_profile_page_view_event(username, user_id, visibility=self.PRIVACY_PRIVATE) self.verify_profile_page_view_event(username, user_id, visibility=self.PRIVACY_PRIVATE)
@flaky # TODO fix this, see TNL-4683
def test_fields_on_my_public_profile(self): def test_fields_on_my_public_profile(self):
""" """
Scenario: Verify that desired fields are shown when looking at her own public profile. Scenario: Verify that desired fields are shown when looking at her own public profile.
......
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