Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[qe] increase default timeout for integration tests suite #30

Merged
merged 1 commit into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions images/build-integration/lib/windows/run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ param(
[Parameter(HelpMessage='Name of the folder on the target host under $HOME where all the content will be copied')]
$targetFolder="crc-integration",
[Parameter(HelpMessage='Name for the junit file with the tests results')]
$junitFilename="integration-junit.xml"
$junitFilename="integration-junit.xml",
[Parameter(HelpMessage='Test suite fails if it does not complete within the specified timeout. Default 90m')]
$suiteTimeout="90m"
)

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

# Copy results
cd ..
Expand Down
Loading