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
6e88c2d2
Commit
6e88c2d2
authored
Mar 03, 2017
by
bmedx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Linting fixes
parent
322de960
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
cms/djangoapps/cms_user_tasks/signals.py
+1
-1
cms/djangoapps/cms_user_tasks/tests.py
+10
-3
No files found.
cms/djangoapps/cms_user_tasks/signals.py
View file @
6e88c2d2
...
...
@@ -4,7 +4,7 @@ Receivers of signals sent from django-user-tasks
from
__future__
import
absolute_import
,
print_function
,
unicode_literals
import
logging
from
six.moves.urllib.parse
import
urljoin
from
six.moves.urllib.parse
import
urljoin
# pylint: disable=import-error
from
django.core.urlresolvers
import
reverse
from
django.dispatch
import
receiver
...
...
cms/djangoapps/cms_user_tasks/tests.py
View file @
6e88c2d2
...
...
@@ -4,7 +4,6 @@ Unit tests for integration of the django-user-tasks app and its REST API.
from
__future__
import
absolute_import
,
print_function
,
unicode_literals
import
sys
from
uuid
import
uuid4
import
logging
...
...
@@ -23,16 +22,24 @@ from user_tasks.serializers import ArtifactSerializer, StatusSerializer
from
.signals
import
user_task_stopped
# Mock logging handler to check for expected logs.
class
MockLoggingHandler
(
logging
.
Handler
):
"""
Mock logging handler to help check for logging statements
"""
def
__init__
(
self
,
*
args
,
**
kwargs
):
self
.
reset
()
logging
.
Handler
.
__init__
(
self
,
*
args
,
**
kwargs
)
def
emit
(
self
,
record
):
"""
Override to catch messages and store them messages in our internal dicts
"""
self
.
messages
[
record
.
levelname
.
lower
()]
.
append
(
record
.
getMessage
())
def
reset
(
self
):
"""
Clear out all messages, also called to initially populate messages dict
"""
self
.
messages
=
{
'debug'
:
[],
'info'
:
[],
...
...
@@ -41,8 +48,8 @@ class MockLoggingHandler(logging.Handler):
'critical'
:
[],
}
# Helper functions for stuff that pylint complains about without disable comments
# Helper functions for stuff that pylint complains about without disable comments
def
_context
(
response
):
"""
Get a context dictionary for a serializer appropriate for the given response.
...
...
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