-
Notifications
You must be signed in to change notification settings - Fork 178
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
fix: check the number of collected data in post_fp_check_fail
#882
fix: check the number of collected data in post_fp_check_fail
#882
Conversation
Codecov Report
@@ Coverage Diff @@
## devel #882 +/- ##
==========================================
+ Coverage 38.12% 38.22% +0.09%
==========================================
Files 99 99
Lines 17782 17823 +41
==========================================
+ Hits 6779 6812 +33
- Misses 11003 11011 +8
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
This is not correct as dpdispatcher does not allow a command to fail. It will retry and raise |
How about counting |
Dpdispatcher expects all tasks finished. |
Then |
It is used with the old dispatcher. |
Also, I think the tag will not be backward unless it is added into the list of backward files. |
Since dpdispatcher will raise an error if any task fails, while the ratio of fail frames shows available data, shall we deprecate |
One can use |
check fail according to the number of collected data |
|
It looks like the failed unit test outputs a |
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.
LGTM
post_fp_check_fail
see #737
dpdispatcher use flag_if_job_task_fail to mark the failed jobs, so
post_fp_check_fail
can be used before checking the frames. If we use the alternative way the issue mentioned, we should consider different representative outputs according tofp_style
. I am wondering if it is a repeat of the following frame checks. However, sinceflag_if_job_task_fail
will be marked as True if one task in the group is failed, I am afraid thatrfail
could be high when only a few tasks fail. I'd like to ask for some suggestions.