-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Figures bug fixes #213
Figures bug fixes #213
Conversation
johnbaldwin
commented
May 7, 2020
•
edited
Loading
edited
- Addresses progress data pipeline errors in LearnerCourseDetails serializer
- Failed call to figures.metrics.get_course_average_progress_for_time_period #217
- Added testing for LearnerCourseGradeMetricsManager
- Updates LearnerCourseDetailsSerializer.get_prgress_data check if there is not a record to process
- Adds serializer testing for the above
- Fixes Ginkgo migration for a Django 1.8 -> 1.11 incompatibility
Django post 1.8 introduced a site model change that is not backward compatible, so we have a conditional dependency depending on the Django version
Test fails because a datetime based query returns empty results when freezegun is enabled in Ginkgo. Skipping test if environment is Ginkgo until we can make time to investigate and fix
If there aren't any matching LearnerCourseGradeMetrics records matching the filtering criteria then an exception is raised and trapped, triggering an error log. This does not change the behvior of the method. What is does is reduce logging noise to the log files and also does not create a `PipelineError` table log enty, saving database space
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @johnbaldwin. I need to unassign myself from this to focus on Multi-Tenant Emails.
@johnbaldwin I'll review this one today. |
Codecov Report
@@ Coverage Diff @@
## master #213 +/- ##
==========================================
- Coverage 91.31% 91.12% -0.19%
==========================================
Files 37 37
Lines 1876 1882 +6
==========================================
+ Hits 1713 1715 +2
- Misses 163 167 +4
Continue to review full report at Codecov.
|