-
Notifications
You must be signed in to change notification settings - Fork 20
xRetry only reports output from final retry #264
Description
The xRetry architecture appears to only be reporting the output from the final retry of a test, which can be hindering when trying to diagnose the root cause of a failure.
Even though test runs should, theoretically, be atomic in their execution, there are inevitably going to be times (especially when performing integration testing) when a retry will stumble because of a condition left around by the initial test run or one of the previous retries. Because of this, it can be very helpful to have the output from all of the test failures sent to the logs, not just the output from the last retry.
Now it would be good to have all of this output sent to the logs at once so that the person trying to diagnose the issue doesn't have to search for the output from the previous runs. It would also be good to have this data in the XML output file all under the results of the same test. But even if the data was scattered throughout the log file, it would be better than nothing at all.