Commit 8c8d388d by clytwynec

Merge pull request #4744 from edx/clytwynec/remove_flaky_decorator_from_tests

removing "flaky" plugin, since it is not reporting failures properly
parents 80ee7e99 0243d0af
...@@ -7,7 +7,6 @@ Acceptance tests for Video. ...@@ -7,7 +7,6 @@ Acceptance tests for Video.
import json import json
from unittest import skipIf, skip from unittest import skipIf, skip
import requests import requests
from box.test.flaky import flaky
from ..helpers import UniqueCourseTest, is_youtube_available from ..helpers import UniqueCourseTest, is_youtube_available
from ...pages.lms.video.video import VideoPage from ...pages.lms.video.video import VideoPage
from ...pages.lms.tab_nav import TabNavPage from ...pages.lms.tab_nav import TabNavPage
...@@ -40,7 +39,6 @@ class YouTubeConfigError(Exception): ...@@ -40,7 +39,6 @@ class YouTubeConfigError(Exception):
pass pass
@flaky
@skipIf(is_youtube_available() is False, 'YouTube is not available!') @skipIf(is_youtube_available() is False, 'YouTube is not available!')
class VideoBaseTest(UniqueCourseTest): class VideoBaseTest(UniqueCourseTest):
""" """
......
...@@ -106,7 +106,6 @@ class BokChoyTestSuite(TestSuite): ...@@ -106,7 +106,6 @@ class BokChoyTestSuite(TestSuite):
"nosetests", "nosetests",
test_spec, test_spec,
"--with-xunit", "--with-xunit",
"--with-flaky",
"--xunit-file={}".format(self.xunit_report), "--xunit-file={}".format(self.xunit_report),
"--verbosity={}".format(self.verbosity), "--verbosity={}".format(self.verbosity),
self.extra_args, self.extra_args,
......
...@@ -126,7 +126,6 @@ rednose==0.3 ...@@ -126,7 +126,6 @@ rednose==0.3
selenium==2.39.0 selenium==2.39.0
splinter==0.5.4 splinter==0.5.4
testtools==0.9.34 testtools==0.9.34
flaky==0.2.0
# Used for Segment.io analytics # Used for Segment.io analytics
analytics-python==0.4.4 analytics-python==0.4.4
......
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