-
Notifications
You must be signed in to change notification settings - Fork 344
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
Avocado instrumented timeout in setUp and tearDown error #6013
Comments
Hi @richtja, thanks for opening this issue. I think the main point this issue proposes is valid, that is, if BTW, IMO this issue should cover fixing the behavior, but also documenting the proposed timeout behavior. When issue #5994 is implemented, then the documentation should be updated to cover the individual timeouts for the different phases. |
IMO the current timeout behaviour is documented by #6012 and if we agree on that any timeout should have |
This commit is a fix for avocado-instrumented timeouts. When the tests are interrupted due to timeout during `setUp` or `tearDown` method, those tests would result in `ERROR` instead of `INTERRUPTED`. This commit updates the exception handling of this method to fix this issue. Reference: avocado-framework#6013 Signed-off-by: Jan Richter <[email protected]>
This commit is a fix for avocado-instrumented timeouts. When the tests are interrupted due to timeout during `setUp` or `tearDown` method, those tests would result in `ERROR` instead of `INTERRUPTED`. This commit updates the exception handling of this method to fix this issue. Reference: avocado-framework#6013 Signed-off-by: Jan Richter <[email protected]>
This commit is a fix for avocado-instrumented timeouts. When the tests are interrupted due to timeout during `setUp` or `tearDown` method, those tests would result in `ERROR` instead of `INTERRUPTED`. This commit updates the exception handling of this method to fix this issue. Reference: avocado-framework#6013 Signed-off-by: Jan Richter <[email protected]>
This commit is a fix for avocado-instrumented timeouts. When the tests are interrupted due to timeout during `setUp` or `tearDown` method, those tests would result in `ERROR` instead of `INTERRUPTED`. This commit updates the exception handling of this method to fix this issue. Reference: avocado-framework#6013 Signed-off-by: Jan Richter <[email protected]>
Resolved by #6015 |
Describe the bug
A clear and concise description of what the bug is.
When the test timeout is reached during
setUp
ortearDown
methods, the test results asERROR
instead ofINTERUPTED
. Based on my testing, the interruption is handled properly, only the result value is wrong.Steps to reproduce
Steps to reproduce the behavior with a reproducible whenever possible.
Test setUp example:
Test tearDown example:
Expected behavior
A clear and concise description of what you expected to happen.
Current behavior
What you are getting?
System information (please complete the following information):
The text was updated successfully, but these errors were encountered: