-
Notifications
You must be signed in to change notification settings - Fork 452
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
[Main] test_unhandled_error_observer_only_message fails randomly #6542
Comments
My guess is the root cause of the error is the following: And the fragile part of the failed is: async def test_unhandled_error_observer_only_message():
...
# get the argument that has been passed to the report_callback
reported_error = CoreExceptionHandler.report_callback.call_args_list[-1][0][0]
... |
As we mock global objects, we should not run tests in parallel in multiple threads. I think it should not significantly affect performance, as Python's use of GIL prevents simultaneous execution anyway. |
This test seemed to fail again when testing #6600 with the following traceback:
Should we create a new issue or use this one? |
Let's use this one. |
I saw
test_unhandled_error_observer_only_message
fail on Windows during the #6540:Console full
as well as
test_unhandled_error_observer_exception
:The text was updated successfully, but these errors were encountered: