forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
skip migration test in vm_watch_test on Arm64
Signed-off-by: Howard Zhang <[email protected]>
- Loading branch information
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -273,6 +273,11 @@ var _ = Describe("[rfe_id:3423][crit:high][arm64][vendor:[email protected]][leve | |
Expect(vmStatus).To(ConsistOf(vm.Name, MatchRegexp(vmAgeRegex), string(v12.VirtualMachineStatusRunning), readyConditionTrue), | ||
"VM should be in the %s status", v12.VirtualMachineStatusRunning) | ||
|
||
// The previous tests would be done, once succeed the following tests would be skipped on the Arm64 cluster | ||
// Otherwise, it would show the failures | ||
// TODO: remove this once we have more than one node in the Arm64 cluster | ||
tests.SkipIfARM64("arm64 cluster only have one node") | ||
|
||
By("Migrating the VirtualMachine") | ||
|
||
// Verify we have more than one scheduleable node | ||
|