-
Notifications
You must be signed in to change notification settings - Fork 248
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
[batch] provide sufficient information to debug transient errors #14151
Conversation
This provides useful feedback we can use to understand why `test_file_in_current_dir` keeps failing.
02c07fb
to
d3b1bf7
Compare
This doesn't work. pytest kept truncating the output on me and I couldn't figure out how to not have it do that. Maybe I was missing a flag for pytest? My hacked solution is in #14149. |
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.
See comment.
Ah yeah good point I forgot about that. You have to construct a string to avoid truncation a la:
|
This provides useful feedback we can use to understand why
test_file_in_current_dir
keeps failing.