Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
e69e9402
Commit
e69e9402
authored
10 years ago
by
Christine Lytwynec
Browse files
Options
Downloads
Plain Diff
Merge pull request #7556 from edx/clytwynec/skip_acid_block_tests
skip acid block tests [TE-812]
parents
1f9ead5d
0370e906
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/test/acceptance/tests/lms/test_lms_acid_xblock.py
+4
-1
4 additions, 1 deletion
common/test/acceptance/tests/lms/test_lms_acid_xblock.py
common/test/acceptance/tests/studio/test_studio_acid_xblock.py
+3
-0
3 additions, 0 deletions
...n/test/acceptance/tests/studio/test_studio_acid_xblock.py
with
7 additions
and
1 deletion
common/test/acceptance/tests/lms/test_lms_acid_xblock.py
+
4
−
1
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
...
...
This diff is collapsed.
Click to expand it.
common/test/acceptance/tests/studio/test_studio_acid_xblock.py
+
3
−
0
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment