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
55cb8591
Commit
55cb8591
authored
5 years ago
by
Soban Javed
Browse files
Options
Downloads
Patches
Plain Diff
skip tests failing in django2.1 because app is deprecated
parent
9eaeb75d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lms/djangoapps/shoppingcart/tests/test_reports.py
+3
-0
3 additions, 0 deletions
lms/djangoapps/shoppingcart/tests/test_reports.py
with
3 additions
and
0 deletions
lms/djangoapps/shoppingcart/tests/test_reports.py
+
3
−
0
View file @
55cb8591
...
...
@@ -7,6 +7,7 @@ Tests for the Shopping Cart Models
import
datetime
from
textwrap
import
dedent
import
pytest
import
pytz
from
django.conf
import
settings
from
mock
import
patch
...
...
@@ -150,6 +151,7 @@ class ReportTypeTests(ModuleStoreTestCase):
self
.
CORRECT_REFUND_REPORT_CSV
.
strip
()
)
@pytest.mark.skip
(
reason
=
"
Fails in django 2.1 and above and the app is deprecated, hence skipping it
"
)
def
test_basic_cert_status_csv
(
self
):
report
=
initialize_report
(
"
certificate_status
"
,
self
.
now
-
self
.
FIVE_MINS
,
self
.
now
+
self
.
FIVE_MINS
,
'
A
'
,
'
Z
'
)
csv_file
=
StringIO
()
...
...
@@ -157,6 +159,7 @@ class ReportTypeTests(ModuleStoreTestCase):
csv
=
csv_file
.
getvalue
()
self
.
assertEqual
(
csv
.
replace
(
'
\r\n
'
,
'
\n
'
).
strip
(),
self
.
CORRECT_CERT_STATUS_CSV
.
strip
())
@pytest.mark.skip
(
reason
=
"
Fails in django 2.1 and above and the app is deprecated, hence skipping it
"
)
def
test_basic_uni_revenue_share_csv
(
self
):
report
=
initialize_report
(
"
university_revenue_share
"
,
self
.
now
-
self
.
FIVE_MINS
,
self
.
now
+
self
.
FIVE_MINS
,
'
A
'
,
'
Z
'
)
csv_file
=
StringIO
()
...
...
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