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
e69e9402
Commit
e69e9402
authored
Apr 01, 2015
by
Christine Lytwynec
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7556 from edx/clytwynec/skip_acid_block_tests
skip acid block tests [TE-812]
parents
1f9ead5d
0370e906
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
common/test/acceptance/tests/lms/test_lms_acid_xblock.py
+4
-1
common/test/acceptance/tests/studio/test_studio_acid_xblock.py
+3
-0
No files found.
common/test/acceptance/tests/lms/test_lms_acid_xblock.py
View file @
e69e9402
...
...
@@ -3,7 +3,7 @@
End-to-end tests for the LMS.
"""
from
unittest
import
expectedFailure
from
unittest
import
expectedFailure
,
skip
from
..helpers
import
UniqueCourseTest
from
...pages.lms.auto_auth
import
AutoAuthPage
...
...
@@ -45,6 +45,7 @@ class XBlockAcidBase(UniqueCourseTest):
self
.
assertTrue
(
acid_block
.
scope_passed
(
'user_info'
))
@skip
(
'Jenkins builds are getting stuck on acid_block tests'
)
class
XBlockAcidNoChildTest
(
XBlockAcidBase
):
"""
Tests of an AcidBlock with no children
...
...
@@ -81,6 +82,7 @@ class XBlockAcidNoChildTest(XBlockAcidBase):
self
.
validate_acid_block_view
(
acid_block
)
@skip
(
'Jenkins builds are getting stuck on acid_block tests'
)
class
XBlockAcidChildTest
(
XBlockAcidBase
):
"""
Tests of an AcidBlock with children
...
...
@@ -128,6 +130,7 @@ class XBlockAcidChildTest(XBlockAcidBase):
self
.
validate_acid_block_view
(
acid_block
)
@skip
(
'Jenkins builds are getting stuck on acid_block tests'
)
class
XBlockAcidAsideTest
(
XBlockAcidBase
):
"""
Tests of an AcidBlock with children
...
...
common/test/acceptance/tests/studio/test_studio_acid_xblock.py
View file @
e69e9402
...
...
@@ -10,6 +10,7 @@ from ...pages.xblock.acid import AcidView
from
...fixtures.course
import
CourseFixture
,
XBlockFixtureDesc
@skip
(
'Jenkins builds are getting stuck on acid_block tests'
)
class
XBlockAcidBase
(
WebAppTest
):
"""
Base class for tests that verify that XBlock integration is working correctly
...
...
@@ -116,6 +117,7 @@ class XBlockAcidNoChildTest(XBlockAcidBase):
self
.
user
=
course_fix
.
user
@skip
(
'Jenkins builds are getting stuck on acid_block tests'
)
class
XBlockAcidParentBase
(
XBlockAcidBase
):
"""
Base class for tests that verify that parent XBlock integration is working correctly
...
...
@@ -169,6 +171,7 @@ class XBlockAcidEmptyParentTest(XBlockAcidParentBase):
self
.
user
=
course_fix
.
user
@skip
(
'Jenkins builds are getting stuck on acid_block tests'
)
class
XBlockAcidChildTest
(
XBlockAcidParentBase
):
"""
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