Skip to content

Commit cb6c7ae

Browse files
committed
[qe] increase default timeout for integration tests suite
Tests are having false positives due to overall ginkgo timeout default value, this commit will include a mechanism to customize the timeout value when running the tests through the container and also increses the default value to 90 minutes Signed-off-by: Adrian Riobo Lorenzo <[email protected]>
1 parent 4e1a5b5 commit cb6c7ae

File tree

1 file changed

+4
-2
lines changed
  • images/build-integration/lib/windows

1 file changed

+4
-2
lines changed

images/build-integration/lib/windows/run.ps1

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ param(
44
[Parameter(HelpMessage='Name of the folder on the target host under $HOME where all the content will be copied')]
55
$targetFolder="crc-integration",
66
[Parameter(HelpMessage='Name for the junit file with the tests results')]
7-
$junitFilename="integration-junit.xml"
7+
$junitFilename="integration-junit.xml",
8+
[Parameter(HelpMessage='Test suite fails if it does not complete within the specified timeout. Default 90m')]
9+
$suiteTimeout="90m"
810
)
911

1012
# Prepare run e2e
@@ -22,7 +24,7 @@ if ($bundleLocation) {
2224
}
2325
# We need to copy the pull-secret to the target folder
2426
$env:PULL_SECRET_PATH="$env:HOME\$targetFolder\pull-secret"
25-
integration.test.exe > integration.results
27+
integration.test.exe --ginkgo.timeout $suiteTimeout > integration.results
2628

2729
# Copy results
2830
cd ..

0 commit comments

Comments
 (0)