-
-
Notifications
You must be signed in to change notification settings - Fork 72
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
Report does not include retry option #37
Comments
Please provide me some additional information to help me understand the issue. What is fastlane's retry option? Do you mean the number_of_retries here? It looks like it won't proceed to the next step during the retry even if this option is enabled, is it not? If possible, can you show me the GitHub Actions Yaml file or (if it's a public repository) the results of running it? |
Yes, I mean |
Can you share with me the YAML file of GitHub Action so I can reproduce the issue? |
this is a fastlane action:
github action workflow
|
This is not fastlane-specific. Xcode test plans support retries. If the first attempt fails and a successive attempt passes, this is reported by xcresulttool as a failure status. |
Was there any progress on this issue, does xcresultool still report a test that was re-run and passed, as failed? |
@kishikawakatsumi Check out the summary of this action. I ran a test that intentionally failed twice and then passed the third time. |
I use xcresulttool + fastlane
Fastlane has a retry option and it means that in case of tests failure they can be re-run several times.
So, if tests failed at the first run then the report published for this step meanwhile the previous job has not been completed yet and the tests can be passed at the second step.
So, you need to wait until the previous step finishes and then publish the test report.
Thanks
The text was updated successfully, but these errors were encountered: