Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-analytics-data-api-client
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
OpenEdx
edx-analytics-data-api-client
Commits
1cb0b260
Commit
1cb0b260
authored
Jul 07, 2016
by
Tyler Hallada
Committed by
GitHub
Jul 07, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #26 from edx/credit-enrollment-mode
Add credit enrollment mode
parents
33d7fee4
e81baca1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
AUTHORS
+1
-0
analyticsclient/constants/enrollment_modes.py
+2
-1
analyticsclient/tests/test_helpers.py
+1
-0
setup.py
+1
-1
No files found.
AUTHORS
View file @
1cb0b260
...
...
@@ -4,3 +4,4 @@ Dennis Jen <djen@edx.org>
Gabe Mulley <gabe@edx.org>
Dylan Rhodes <dylanr@stanford.edu>
Dmitry Viskov <dmitry.viskov@webenterprise.ru>
Tyler Hallada <thallada@edx.org>
analyticsclient/constants/enrollment_modes.py
View file @
1cb0b260
AUDIT
=
u'audit'
CREDIT
=
u'credit'
HONOR
=
u'honor'
PROFESSIONAL
=
u'professional'
VERIFIED
=
u'verified'
ALL
=
[
AUDIT
,
HONOR
,
PROFESSIONAL
,
VERIFIED
]
ALL
=
[
AUDIT
,
CREDIT
,
HONOR
,
PROFESSIONAL
,
VERIFIED
]
analyticsclient/tests/test_helpers.py
View file @
1cb0b260
...
...
@@ -37,6 +37,7 @@ class HelperTests(TestCase):
def
test_enrollment_modes
(
self
):
self
.
assertEqual
(
'audit'
,
enrollment_modes
.
AUDIT
)
self
.
assertEqual
(
'credit'
,
enrollment_modes
.
CREDIT
)
self
.
assertEqual
(
'honor'
,
enrollment_modes
.
HONOR
)
self
.
assertEqual
(
'professional'
,
enrollment_modes
.
PROFESSIONAL
)
self
.
assertEqual
(
'verified'
,
enrollment_modes
.
VERIFIED
)
setup.py
View file @
1cb0b260
...
...
@@ -2,7 +2,7 @@ from distutils.core import setup
setup
(
name
=
'edx-analytics-data-api-client'
,
version
=
'0.
7
.0'
,
version
=
'0.
8
.0'
,
packages
=
[
'analyticsclient'
,
'analyticsclient.constants'
],
url
=
'https://github.com/edx/edx-analytics-data-api-client'
,
description
=
'Client used to access edX analytics data warehouse'
,
...
...
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