Versions in this module Expand all Collapse all v1 v1.0.0 Apr 20, 2026 Changes in this version + type RetryConfig struct + BaseDelay time.Duration + JitterFactor float64 + MaxAttempts int + MaxDelay time.Duration + func DefaultRetryConfig() RetryConfig + type RetryController struct + func NewRetryController(cfg RetryConfig) *RetryController + func (r *RetryController) Run(ctx context.Context, tc *registry.TestCase, ...) (*result.TestResult, error) + type RunnerConfig struct + Dimensions []types.Dimension + NumWorkers int + RetryConfig RetryConfig + Tags []string + Verbose bool + type TestRunner struct + func NewRunner(cfg RunnerConfig, runners map[types.Dimension]dimensions.DimensionRunner, ...) *TestRunner + func (r *TestRunner) Run(ctx context.Context, suite *registry.TestSuite) (*result.TestRun, error)