Skip to main content

Module retry

Module retry 

Source

Structs§

FailedTestInfo
Information about a failed test.
RetryAttempt
Result of a single retry attempt.
RetryConfig
Configuration for retry behavior.
RetryResult
Aggregated result of all retry attempts for a test run.
RetryStats
Statistics about a retry session.

Enums§

BackoffStrategy
Strategy for computing delay between retries.

Functions§

build_retry_result
Build a RetryResult from an original run and retry attempts.
compute_retry_stats
Compute retry statistics from a RetryResult.
extract_failed_tests
Extract the names of failed tests from a result.
failed_tests_as_filter
Create a filter string from failed test names for re-running.
merge_all_retries
Merge results from multiple retry attempts progressively.
merge_retry_result
Merge an original result with a retry result. Tests that passed in the retry override their failed status in the original.
tests_still_failing
Determine which tests still need retrying after an attempt.