Commit b653e28e by Ned Batchelder

Mark two tests flaky. TNL-4190 TNL-4191

parent 11024126
...@@ -4,6 +4,8 @@ from common.test.acceptance.pages.lms.oauth2_confirmation import OAuth2Confirmat ...@@ -4,6 +4,8 @@ from common.test.acceptance.pages.lms.oauth2_confirmation import OAuth2Confirmat
from common.test.acceptance.pages.lms.auto_auth import AutoAuthPage from common.test.acceptance.pages.lms.auto_auth import AutoAuthPage
from bok_choy.web_app_test import WebAppTest from bok_choy.web_app_test import WebAppTest
from flaky import flaky
from urlparse import urlparse, parse_qsl from urlparse import urlparse, parse_qsl
...@@ -50,6 +52,7 @@ class OAuth2PermissionDelegationTests(WebAppTest): ...@@ -50,6 +52,7 @@ class OAuth2PermissionDelegationTests(WebAppTest):
query = self._qs(self.browser.current_url) query = self._qs(self.browser.current_url)
self.assertIn('access_denied', query['error']) self.assertIn('access_denied', query['error'])
@flaky # TODO, fix this: TNL-4190
def test_accepting_redirects(self): def test_accepting_redirects(self):
""" """
If you accept the request, you're redirected to the redirect_url with If you accept the request, you're redirected to the redirect_url with
......
...@@ -4,6 +4,8 @@ Acceptance tests for the Import and Export pages ...@@ -4,6 +4,8 @@ Acceptance tests for the Import and Export pages
from nose.plugins.attrib import attr from nose.plugins.attrib import attr
from datetime import datetime from datetime import datetime
from flaky import flaky
from abc import abstractmethod from abc import abstractmethod
from bok_choy.promise import EmptyPromise from bok_choy.promise import EmptyPromise
...@@ -180,6 +182,7 @@ class ImportTestMixin(object): ...@@ -180,6 +182,7 @@ class ImportTestMixin(object):
""" """
return [] return []
@flaky # TODO, fix this: TNL-4191
def test_upload(self): def test_upload(self):
""" """
Scenario: I want to upload a course or library for import. Scenario: I want to upload a course or library for import.
......
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