-
Notifications
You must be signed in to change notification settings - Fork 28
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
feat: Start populating report_type column #296
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #296 +/- ##
==========================================
- Coverage 95.65% 95.64% -0.01%
==========================================
Files 612 612
Lines 15734 15743 +9
==========================================
+ Hits 15050 15058 +8
- Misses 684 685 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Codecov Report
@@ Coverage Diff @@
## main #296 +/- ##
==========================================
- Coverage 95.65% 95.64% -0.01%
==========================================
Files 612 612
Lines 15734 15743 +9
==========================================
+ Hits 15050 15058 +8
- Misses 684 685 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
if report_type == CommitReport.ReportType.COVERAGE: | ||
queryset = queryset.coverage_reports() | ||
else: | ||
queryset = queryset.filter(report_type=report_type) |
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.
This will be tested when I implement the upload endpoint for bundle analysis
Purpose/Motivation
Follow up from #287
Links to relevant tickets
N/A
What does this PR do?
Starts populating the
report_type
column when we create new commit reports or query for existing commit reports (as part of upload).