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.
Add
SigCompute
decorator to related tests
Not all occurrences of `[sig-compute]` were paired with the decorator `SigCompute`. This is because in some files the `[sig-compute]` tag was already present in the parent spec. Signed-off-by: fossedihelm <[email protected]>
- Loading branch information
1 parent
359dd13
commit 2c18a95
Showing
58 changed files
with
146 additions
and
54 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 |
---|---|---|
|
@@ -23,6 +23,8 @@ import ( | |
"context" | ||
"fmt" | ||
|
||
"kubevirt.io/kubevirt/tests/decorators" | ||
|
||
"kubevirt.io/kubevirt/tests/clientcmd" | ||
"kubevirt.io/kubevirt/tests/framework/checks" | ||
"kubevirt.io/kubevirt/tests/testsuite" | ||
|
@@ -157,7 +159,7 @@ func (r rights) list() (e []rightsEntry) { | |
return | ||
} | ||
|
||
var _ = Describe("[rfe_id:500][crit:high][arm64][vendor:[email protected]][level:component][sig-compute]User Access", func() { | ||
var _ = Describe("[rfe_id:500][crit:high][arm64][vendor:[email protected]][level:component][sig-compute]User Access", decorators.SigCompute, func() { | ||
|
||
var k8sClient string | ||
var authClient *authClientV1.AuthorizationV1Client | ||
|
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
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 |
---|---|---|
|
@@ -24,6 +24,8 @@ import ( | |
"strings" | ||
"time" | ||
|
||
"kubevirt.io/kubevirt/tests/decorators" | ||
|
||
k8sv1 "k8s.io/api/core/v1" | ||
|
||
expect "github.com/google/goexpect" | ||
|
@@ -45,7 +47,7 @@ import ( | |
"kubevirt.io/kubevirt/tests/libvmi" | ||
) | ||
|
||
var _ = Describe("[rfe_id:899][crit:medium][vendor:[email protected]][level:component][sig-compute]Config", func() { | ||
var _ = Describe("[rfe_id:899][crit:medium][vendor:[email protected]][level:component][sig-compute]Config", decorators.SigCompute, func() { | ||
|
||
var virtClient kubecli.KubevirtClient | ||
|
||
|
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 |
---|---|---|
|
@@ -60,7 +60,7 @@ func withNodeAffinityTo(label string, value string) libvmi.Option { | |
} | ||
} | ||
|
||
var _ = Describe("[rfe_id:127][posneg:negative][crit:medium][vendor:[email protected]][level:component][sig-compute]Console", func() { | ||
var _ = Describe("[rfe_id:127][posneg:negative][crit:medium][vendor:[email protected]][level:component][sig-compute]Console", decorators.SigCompute, func() { | ||
|
||
var virtClient kubecli.KubevirtClient | ||
|
||
|
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 |
---|---|---|
|
@@ -25,6 +25,8 @@ import ( | |
"strings" | ||
"time" | ||
|
||
"kubevirt.io/kubevirt/tests/decorators" | ||
|
||
expect "github.com/google/goexpect" | ||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
|
@@ -47,7 +49,7 @@ import ( | |
"kubevirt.io/kubevirt/tests/libwait" | ||
) | ||
|
||
var _ = Describe("[rfe_id:588][crit:medium][vendor:[email protected]][level:component][sig-compute]ContainerDisk", func() { | ||
var _ = Describe("[rfe_id:588][crit:medium][vendor:[email protected]][level:component][sig-compute]ContainerDisk", decorators.SigCompute, func() { | ||
|
||
var virtClient kubecli.KubevirtClient | ||
var err error | ||
|
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
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
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
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
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 |
---|---|---|
|
@@ -6,6 +6,8 @@ import ( | |
goerrors "errors" | ||
"time" | ||
|
||
"kubevirt.io/kubevirt/tests/decorators" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
|
||
|
@@ -33,7 +35,7 @@ import ( | |
"kubevirt.io/kubevirt/tests/util" | ||
) | ||
|
||
var _ = Describe("[crit:medium][vendor:[email protected]][level:component][sig-compute] Instancetype and Preferences", func() { | ||
var _ = Describe("[crit:medium][vendor:[email protected]][level:component][sig-compute] Instancetype and Preferences", decorators.SigCompute, func() { | ||
|
||
var ( | ||
virtClient kubecli.KubevirtClient | ||
|
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
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
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
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
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 |
---|---|---|
|
@@ -107,7 +107,7 @@ const ( | |
stressDefaultTimeout = 1600 | ||
) | ||
|
||
var _ = Describe("[rfe_id:393][crit:high][vendor:[email protected]][level:system][sig-compute] VM Live Migration", decorators.SigComputeMigrations, func() { | ||
var _ = Describe("[rfe_id:393][crit:high][vendor:[email protected]][level:system][sig-compute] VM Live Migration", decorators.SigComputeMigrations, decorators.SigCompute, func() { | ||
var virtClient kubecli.KubevirtClient | ||
var migrationBandwidthLimit resource.Quantity | ||
var err error | ||
|
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
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
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
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 |
---|---|---|
|
@@ -26,6 +26,8 @@ import ( | |
"strings" | ||
"time" | ||
|
||
"kubevirt.io/kubevirt/tests/decorators" | ||
|
||
"k8s.io/apimachinery/pkg/util/intstr" | ||
|
||
"kubevirt.io/kubevirt/tests/framework/matcher" | ||
|
@@ -51,7 +53,7 @@ import ( | |
cd "kubevirt.io/kubevirt/tests/containerdisk" | ||
) | ||
|
||
var _ = Describe("[rfe_id:3064][crit:medium][vendor:[email protected]][level:component][sig-compute]Pausing", func() { | ||
var _ = Describe("[rfe_id:3064][crit:medium][vendor:[email protected]][level:component][sig-compute]Pausing", decorators.SigCompute, func() { | ||
|
||
var err error | ||
var virtClient kubecli.KubevirtClient | ||
|
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
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
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 |
---|---|---|
|
@@ -26,6 +26,8 @@ import ( | |
"strings" | ||
"time" | ||
|
||
"kubevirt.io/kubevirt/tests/decorators" | ||
|
||
"kubevirt.io/kubevirt/tests/clientcmd" | ||
"kubevirt.io/kubevirt/tests/framework/checks" | ||
"kubevirt.io/kubevirt/tests/framework/matcher" | ||
|
@@ -53,7 +55,7 @@ import ( | |
"kubevirt.io/kubevirt/tests" | ||
) | ||
|
||
var _ = Describe("[rfe_id:588][crit:medium][vendor:[email protected]][level:component][sig-compute]VirtualMachineInstanceReplicaSet", func() { | ||
var _ = Describe("[rfe_id:588][crit:medium][vendor:[email protected]][level:component][sig-compute]VirtualMachineInstanceReplicaSet", decorators.SigCompute, func() { | ||
var err error | ||
var virtClient kubecli.KubevirtClient | ||
|
||
|
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
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
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
Oops, something went wrong.