You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was hoping to use rspec-retry to not only automatically re-run failing tests, but to record information about which tests are failing intermittently and which are failing multiple times. Does that information get summarised anywhere?
I was thinking of using the retry_callback but that only runs in between tests, and so means it can only be used to record individual failures, and not used to indicate that a test first failed and then passed. Is there some other mechanism available?
Many thanks in advance
The text was updated successfully, but these errors were encountered:
Found myself here wondering about a similar strategy. Ideally the retry is never used, but when it is, it would be awesome to have some way to know which specs were retried without having to traverse through the build output. With this info, I could target the specs that were flakey. Thanks in advance for any advice and thanks for an awesome tool.
I am in a similar situation. I was using examples = RSpec.world.filtered_examples.values.flatten in my after suite hook. However, this doesn't include all the tries of a test (only the last one I think).
I was hoping to use rspec-retry to not only automatically re-run failing tests, but to record information about which tests are failing intermittently and which are failing multiple times. Does that information get summarised anywhere?
I was thinking of using the
retry_callback
but that only runs in between tests, and so means it can only be used to record individual failures, and not used to indicate that a test first failed and then passed. Is there some other mechanism available?Many thanks in advance
The text was updated successfully, but these errors were encountered: