Skip to content
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 test/resources/microshift-rpm.resource
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ Install MicroShift RPM Packages From System Repo
[Arguments] ${version} ${check_warnings}=True
# Allow erasing because update may require a new version of openvswitch
# and major versions of openvswitch are separate packages that obsolete
# each other.
${stdout}= Command Should Work dnf install -y --allowerasing 'microshift-${version}'
# each other. Override default timeout to 2 min (-R 2) because the transmission rate sometimes dips below the
# minrate threshold. This is not a fatal error and should not fail the test, so raising the timeout only helps to
# keep logs clean of flakey error messages.
${stdout}= Command Should Work dnf install -q -R 2 -y --allowerasing 'microshift-${version}'
IF ${check_warnings}
# Look for all warnings and errors before testing so that the log
# shows the output for both.
Expand Down