Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1825 +/- ##
=======================================
Coverage 49.96% 49.97%
=======================================
Files 378 378
Lines 40768 40770 +2
Branches 6859 6860 +1
=======================================
+ Hits 20370 20373 +3
+ Misses 19670 19669 -1
Partials 728 728
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
pieqq
approved these changes
Mar 27, 2025
stanley31huang
pushed a commit
that referenced
this pull request
Mar 28, 2025
Log to error logger all problems
LiaoU3
pushed a commit
that referenced
this pull request
Apr 14, 2025
Log to error logger all problems
mreed8855
pushed a commit
that referenced
this pull request
Jul 30, 2025
Log to error logger all problems
mreed8855
pushed a commit
that referenced
this pull request
Jul 31, 2025
Log to error logger all problems
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Currently dependency problems found by the dependency solver are returned to the caller of
update_desired_job_list. All callers of these function beside the ones in tests ignore this list, and this makes it so if you have a dependency issue in your testplan, you will never know. This PR fixes this issue (partially) by logging an error before returning the list. It is impossible to handle this in a different manner because most of the functions that call this function do not have access to the ui printer nor any facility to easily bubble up this list.Resolved issues
Fixes: CHECKBOX-1818
Documentation
N/A
Tests
Before this patch: (Silently exits, no way to know what went wrong)
After this patch: (Complains about the errors, the missing dependency is there in the first line)