Merge pull request #19771 from edx/dahlia/masters-track

Added master's track
This commit is contained in:
Dave St.Germain
2019-02-25 10:11:24 -05:00
committed by GitHub
8 changed files with 101 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ log = getLogger(__name__)
# "interesting" here means "credentials will want to know about it"
INTERESTING_MODES = CourseMode.CREDIT_ELIGIBLE_MODES + CourseMode.CREDIT_MODES
INTERESTING_MODES = CourseMode.CERTIFICATE_RELEVANT_MODES
INTERESTING_STATUSES = [
CertificateStatuses.notpassing,
CertificateStatuses.downloadable,

View File

@@ -43,6 +43,8 @@ class TestCredentialsSignalsSendGrade(TestCase):
[True, 'no-id-professional', 'downloadable'],
[True, 'credit', 'downloadable'],
[True, 'verified', 'notpassing'],
[True, 'masters', 'downloadable'],
[True, 'masters', 'notpassing'],
[False, 'audit', 'downloadable'],
[False, 'professional', 'generating'],
[False, 'no-id-professional', 'generating'],