File size: 353 Bytes
8d3471e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | package testsuite
import (
"os"
"strings"
"time"
)
func DefaultOptions() Options {
return Options{
ConfigPath: "config.json",
AdminKey: strings.TrimSpace(os.Getenv("DS2API_ADMIN_KEY")),
OutputDir: "artifacts/testsuite",
Port: 0,
Timeout: 120 * time.Second,
Retries: 2,
NoPreflight: false,
MaxKeepRuns: 5,
}
}
|