Commit 94c0a546 by Ben Patterson

Flag two tests as flaky. See inline comments for JIRA tickets.

parent 8ab50177
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
Acceptance tests for Home Page (My Courses / My Libraries). Acceptance tests for Home Page (My Courses / My Libraries).
""" """
from bok_choy.web_app_test import WebAppTest from bok_choy.web_app_test import WebAppTest
from flaky import flaky
from opaque_keys.edx.locator import LibraryLocator from opaque_keys.edx.locator import LibraryLocator
from uuid import uuid4 from uuid import uuid4
...@@ -32,6 +33,7 @@ class CreateLibraryTest(WebAppTest): ...@@ -32,6 +33,7 @@ class CreateLibraryTest(WebAppTest):
self.auth_page = AutoAuthPage(self.browser, staff=True) self.auth_page = AutoAuthPage(self.browser, staff=True)
self.dashboard_page = DashboardPage(self.browser) self.dashboard_page = DashboardPage(self.browser)
@flaky # TODO: SOL-430
def test_create_library(self): def test_create_library(self):
""" """
From the home page: From the home page:
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
Acceptance tests for Studio's Settings Details pages Acceptance tests for Studio's Settings Details pages
""" """
from datetime import datetime, timedelta from datetime import datetime, timedelta
from flaky import flaky
from nose.plugins.attrib import attr from nose.plugins.attrib import attr
from unittest import skip from unittest import skip
...@@ -174,6 +175,7 @@ class SettingsMilestonesTest(StudioSettingsDetailsTest): ...@@ -174,6 +175,7 @@ class SettingsMilestonesTest(StudioSettingsDetailsTest):
text='Entrance Exam' text='Entrance Exam'
)) ))
@flaky # TODO: SOL-1595
def test_entrance_exam_has_unit_button(self): def test_entrance_exam_has_unit_button(self):
""" """
Test that entrance exam should be created after checking the 'enable entrance exam' checkbox. Test that entrance exam should be created after checking the 'enable entrance exam' checkbox.
......
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