Commit e69e9402 by Christine Lytwynec

Merge pull request #7556 from edx/clytwynec/skip_acid_block_tests

skip acid block tests [TE-812]
parents 1f9ead5d 0370e906
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
End-to-end tests for the LMS. End-to-end tests for the LMS.
""" """
from unittest import expectedFailure from unittest import expectedFailure, skip
from ..helpers import UniqueCourseTest from ..helpers import UniqueCourseTest
from ...pages.lms.auto_auth import AutoAuthPage from ...pages.lms.auto_auth import AutoAuthPage
...@@ -45,6 +45,7 @@ class XBlockAcidBase(UniqueCourseTest): ...@@ -45,6 +45,7 @@ class XBlockAcidBase(UniqueCourseTest):
self.assertTrue(acid_block.scope_passed('user_info')) self.assertTrue(acid_block.scope_passed('user_info'))
@skip('Jenkins builds are getting stuck on acid_block tests')
class XBlockAcidNoChildTest(XBlockAcidBase): class XBlockAcidNoChildTest(XBlockAcidBase):
""" """
Tests of an AcidBlock with no children Tests of an AcidBlock with no children
...@@ -81,6 +82,7 @@ class XBlockAcidNoChildTest(XBlockAcidBase): ...@@ -81,6 +82,7 @@ class XBlockAcidNoChildTest(XBlockAcidBase):
self.validate_acid_block_view(acid_block) self.validate_acid_block_view(acid_block)
@skip('Jenkins builds are getting stuck on acid_block tests')
class XBlockAcidChildTest(XBlockAcidBase): class XBlockAcidChildTest(XBlockAcidBase):
""" """
Tests of an AcidBlock with children Tests of an AcidBlock with children
...@@ -128,6 +130,7 @@ class XBlockAcidChildTest(XBlockAcidBase): ...@@ -128,6 +130,7 @@ class XBlockAcidChildTest(XBlockAcidBase):
self.validate_acid_block_view(acid_block) self.validate_acid_block_view(acid_block)
@skip('Jenkins builds are getting stuck on acid_block tests')
class XBlockAcidAsideTest(XBlockAcidBase): class XBlockAcidAsideTest(XBlockAcidBase):
""" """
Tests of an AcidBlock with children Tests of an AcidBlock with children
......
...@@ -10,6 +10,7 @@ from ...pages.xblock.acid import AcidView ...@@ -10,6 +10,7 @@ from ...pages.xblock.acid import AcidView
from ...fixtures.course import CourseFixture, XBlockFixtureDesc from ...fixtures.course import CourseFixture, XBlockFixtureDesc
@skip('Jenkins builds are getting stuck on acid_block tests')
class XBlockAcidBase(WebAppTest): class XBlockAcidBase(WebAppTest):
""" """
Base class for tests that verify that XBlock integration is working correctly Base class for tests that verify that XBlock integration is working correctly
...@@ -116,6 +117,7 @@ class XBlockAcidNoChildTest(XBlockAcidBase): ...@@ -116,6 +117,7 @@ class XBlockAcidNoChildTest(XBlockAcidBase):
self.user = course_fix.user self.user = course_fix.user
@skip('Jenkins builds are getting stuck on acid_block tests')
class XBlockAcidParentBase(XBlockAcidBase): class XBlockAcidParentBase(XBlockAcidBase):
""" """
Base class for tests that verify that parent XBlock integration is working correctly Base class for tests that verify that parent XBlock integration is working correctly
...@@ -169,6 +171,7 @@ class XBlockAcidEmptyParentTest(XBlockAcidParentBase): ...@@ -169,6 +171,7 @@ class XBlockAcidEmptyParentTest(XBlockAcidParentBase):
self.user = course_fix.user self.user = course_fix.user
@skip('Jenkins builds are getting stuck on acid_block tests')
class XBlockAcidChildTest(XBlockAcidParentBase): class XBlockAcidChildTest(XBlockAcidParentBase):
""" """
Tests of an AcidBlock with children Tests of an AcidBlock with children
......
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