Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
73ce054c
Commit
73ce054c
authored
Jun 09, 2015
by
Christine Lytwynec
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8415 from edx/clytwynec/re-enable_acid_block_tests
unskip acid xblock tests
parents
ab46de59
7e19142b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
8 deletions
+1
-8
common/test/acceptance/tests/lms/test_lms_acid_xblock.py
+1
-4
common/test/acceptance/tests/studio/test_studio_acid_xblock.py
+0
-4
No files found.
common/test/acceptance/tests/lms/test_lms_acid_xblock.py
View file @
73ce054c
...
@@ -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
,
skip
from
unittest
import
expectedFailure
from
..helpers
import
UniqueCourseTest
from
..helpers
import
UniqueCourseTest
from
...pages.lms.auto_auth
import
AutoAuthPage
from
...pages.lms.auto_auth
import
AutoAuthPage
...
@@ -45,7 +45,6 @@ class XBlockAcidBase(UniqueCourseTest):
...
@@ -45,7 +45,6 @@ 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
...
@@ -82,7 +81,6 @@ class XBlockAcidNoChildTest(XBlockAcidBase):
...
@@ -82,7 +81,6 @@ 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
...
@@ -130,7 +128,6 @@ class XBlockAcidChildTest(XBlockAcidBase):
...
@@ -130,7 +128,6 @@ 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
...
...
common/test/acceptance/tests/studio/test_studio_acid_xblock.py
View file @
73ce054c
"""
"""
Acceptance tests for Studio related to the acid xblock.
Acceptance tests for Studio related to the acid xblock.
"""
"""
from
unittest
import
skip
from
bok_choy.web_app_test
import
WebAppTest
from
bok_choy.web_app_test
import
WebAppTest
from
...pages.studio.auto_auth
import
AutoAuthPage
from
...pages.studio.auto_auth
import
AutoAuthPage
...
@@ -10,7 +9,6 @@ from ...pages.xblock.acid import AcidView
...
@@ -10,7 +9,6 @@ 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
...
@@ -117,7 +115,6 @@ class XBlockAcidNoChildTest(XBlockAcidBase):
...
@@ -117,7 +115,6 @@ 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
...
@@ -171,7 +168,6 @@ class XBlockAcidEmptyParentTest(XBlockAcidParentBase):
...
@@ -171,7 +168,6 @@ 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment