mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 22:17:14 +00:00
Merge pull request #126055 from dims/set-ginkgo-timeout-if-not-specified-explicitly
Set ginkgo time if not specified explicitly
This commit is contained in:
commit
9c653b8837
@ -153,9 +153,21 @@ func RunRemote(cfg RunRemoteConfig) (string, bool, error) {
|
||||
return "", false, fmt.Errorf("failed to create test result directory %q on Host %q: %v Output: %q", resultDir, cfg.Host, err, output)
|
||||
}
|
||||
|
||||
allGinkgoFlags := cfg.GinkgoArgs
|
||||
if !strings.Contains(allGinkgoFlags, "--timeout") {
|
||||
klog.Warningf("ginkgo flags are missing explicit --timeout (ginkgo defaults to 60 minutes)")
|
||||
// see https://github.com/onsi/ginkgo/blob/master/docs/index.md#:~:text=ginkgo%20%2D%2Dtimeout%3Dduration
|
||||
// ginkgo suite timeout should be more than the default but less than the
|
||||
// full test timeout, so we should use the average of the two.
|
||||
suiteTimeout := int(testTimeout.Minutes())
|
||||
suiteTimeout = (60 + suiteTimeout) / 2
|
||||
allGinkgoFlags = fmt.Sprintf("%s --timeout=%dm", allGinkgoFlags, suiteTimeout)
|
||||
klog.Infof("updated ginkgo flags: %s", allGinkgoFlags)
|
||||
}
|
||||
|
||||
klog.V(2).Infof("Running test on %q", cfg.Host)
|
||||
output, err := cfg.Suite.RunTest(cfg.Host, workspace, resultDir, cfg.ImageDesc, cfg.JunitFileName, cfg.TestArgs,
|
||||
cfg.GinkgoArgs, cfg.SystemSpecName, cfg.ExtraEnvs, cfg.RuntimeConfig, *testTimeout)
|
||||
allGinkgoFlags, cfg.SystemSpecName, cfg.ExtraEnvs, cfg.RuntimeConfig, *testTimeout)
|
||||
|
||||
var aggErrs []error
|
||||
// Do not log the Output here, let the caller deal with the test Output.
|
||||
|
Loading…
Reference in New Issue
Block a user