Merge pull request #4744 from edx/clytwynec/remove_flaky_decorator_from_tests

removing "flaky" plugin, since it is not reporting failures properly
This commit is contained in:
clytwynec
2014-08-08 10:15:03 -04:00
3 changed files with 0 additions and 4 deletions

View File

@@ -7,7 +7,6 @@ Acceptance tests for Video.
import json
from unittest import skipIf, skip
import requests
from box.test.flaky import flaky
from ..helpers import UniqueCourseTest, is_youtube_available
from ...pages.lms.video.video import VideoPage
from ...pages.lms.tab_nav import TabNavPage
@@ -40,7 +39,6 @@ class YouTubeConfigError(Exception):
pass
@flaky
@skipIf(is_youtube_available() is False, 'YouTube is not available!')
class VideoBaseTest(UniqueCourseTest):
"""

View File

@@ -106,7 +106,6 @@ class BokChoyTestSuite(TestSuite):
"nosetests",
test_spec,
"--with-xunit",
"--with-flaky",
"--xunit-file={}".format(self.xunit_report),
"--verbosity={}".format(self.verbosity),
self.extra_args,

View File

@@ -126,7 +126,6 @@ rednose==0.3
selenium==2.39.0
splinter==0.5.4
testtools==0.9.34
flaky==0.2.0
# Used for Segment.io analytics
analytics-python==0.4.4