Commit 8ff48868 by Christine Lytwynec

Merge pull request #7337 from edx/clytwynec/flaky-tests-test_password_reset_success

decorate flaky test
parents cb2c8bc8 fd6d1350
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
End-to-end tests for the LMS. End-to-end tests for the LMS.
""" """
from flaky import flaky
from textwrap import dedent from textwrap import dedent
from unittest import skip from unittest import skip
from nose.plugins.attrib import attr from nose.plugins.attrib import attr
...@@ -85,6 +86,7 @@ class LoginFromCombinedPageTest(UniqueCourseTest): ...@@ -85,6 +86,7 @@ class LoginFromCombinedPageTest(UniqueCourseTest):
self.login_page.visit().toggle_form() self.login_page.visit().toggle_form()
self.assertEqual(self.login_page.current_form, "register") self.assertEqual(self.login_page.current_form, "register")
@flaky # TODO fix this, see ECOM-1165
def test_password_reset_success(self): def test_password_reset_success(self):
# Create a user account # Create a user account
email, password = self._create_unique_user() # pylint: disable=unused-variable email, password = self._create_unique_user() # pylint: disable=unused-variable
......
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