Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Broad benchmark runs can now retry only the case x runner executions that fail, so a single flaky agent response no longer forces you to rerun the whole matrix. You can configure retries with
run.retryFailedorskillgym run ... --retry-failed <n>, and the final reports keep every attempt and call out when a pass came from a retry.Context
This adds retry handling inside suite execution instead of requiring wrapper scripts around
--caseand--runner. Retry metadata now flows through the result model and built-in reporters so JSON output, GitHub Actions summaries, and the standard CLI reporter all preserve attempt artifacts and expose the final retry outcome.Fixes #17
Proposed Testing Scenario
Run a suite that contains one intentionally flaky case with
--retry-failed 2and verify that only the failing case x runner execution is rerun, that successful executions are not repeated, and that the final output shows both the preserved attempt artifacts and whether the last result passed on retry.