Skip to content

Commit 790995a

Browse files
committed
Added conformance label
1 parent 0c6e456 commit 790995a

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

test/e2e/vsphere/machines.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const (
2323
machineReadyTimeout = time.Minute * 6
2424
)
2525

26-
var _ = Describe("[sig-cluster-lifecycle][OCPFeatureGate:VSphereMultiDisk][platform:vsphere] Managed cluster should", func() {
26+
var _ = Describe("[sig-cluster-lifecycle][OCPFeatureGate:VSphereMultiDisk][platform:vsphere] Managed cluster should", Label("Conformance"), func() {
2727
defer GinkgoRecover()
2828
ctx := context.Background()
2929

@@ -46,7 +46,7 @@ var _ = Describe("[sig-cluster-lifecycle][OCPFeatureGate:VSphereMultiDisk][platf
4646
Expect(err).NotTo(HaveOccurred())
4747
})
4848

49-
It("create machines with data disks [apigroup:machine.openshift.io]", func() {
49+
It("create machines with data disks [apigroup:machine.openshift.io][Suite:openshift/conformance/parallel]", func() {
5050
machineName := "machine-multi-test"
5151
dataDisks := []v1beta1.VSphereDisk{
5252
{
@@ -156,28 +156,28 @@ var _ = Describe("[sig-cluster-lifecycle][OCPFeatureGate:VSphereMultiDisk][platf
156156
err = mc.MachineSets(util.MachineAPINamespace).Delete(ctx, ddMachineSet.Name, metav1.DeleteOptions{})
157157
Expect(err).NotTo(HaveOccurred())
158158
},
159-
Entry("with thin data disk [apigroup:machine.openshift.io]", "ms-thin-test", []v1beta1.VSphereDisk{
159+
Entry("with thin data disk [apigroup:machine.openshift.io][Suite:openshift/conformance/parallel]", "ms-thin-test", []v1beta1.VSphereDisk{
160160
{
161161
Name: "thickDataDisk",
162162
SizeGiB: 1,
163163
ProvisioningMode: v1beta1.ProvisioningModeThick,
164164
},
165165
}),
166-
Entry("with thick data disk [apigroup:machine.openshift.io]", "ms-thick-test", []v1beta1.VSphereDisk{
166+
Entry("with thick data disk [apigroup:machine.openshift.io][Suite:openshift/conformance/parallel]", "ms-thick-test", []v1beta1.VSphereDisk{
167167
{
168168
Name: "thickDataDisk",
169169
SizeGiB: 1,
170170
ProvisioningMode: v1beta1.ProvisioningModeThick,
171171
},
172172
}),
173-
Entry("with eagerly zeroed data disk [apigroup:machine.openshift.io]", "ms-zeroed-test", []v1beta1.VSphereDisk{
173+
Entry("with eagerly zeroed data disk [apigroup:machine.openshift.io][Suite:openshift/conformance/parallel]", "ms-zeroed-test", []v1beta1.VSphereDisk{
174174
{
175175
Name: "zeroedDataDisk",
176176
SizeGiB: 1,
177177
ProvisioningMode: v1beta1.ProvisioningModeEagerlyZeroed,
178178
},
179179
}),
180-
Entry("with a data disk using each provisioning mode [apigroup:machine.openshift.io]", "ms-multi-test", []v1beta1.VSphereDisk{
180+
Entry("with a data disk using each provisioning mode [apigroup:machine.openshift.io][Suite:openshift/conformance/parallel]", "ms-multi-test", []v1beta1.VSphereDisk{
181181
{
182182
Name: "thinDataDisk",
183183
SizeGiB: 1,

test/e2e/vsphere/multi-nic.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -190,24 +190,24 @@ var _ = Describe("[sig-cluster-lifecycle][OCPFeatureGate:VSphereMultiNetworks][p
190190
}
191191
})
192192

193-
It("node addresses should be correlated with the machine network", func() {
193+
It("node addresses should be correlated with the machine network [Suite:openshift/conformance/parallel]", func() {
194194
By("checking for correlation between node internal/external IPs and the machine network")
195195
failIfNodeNotInMachineNetwork(*nodes, machineNetworks)
196196
})
197197

198-
It("machine network should be correlated with node networking", func() {
198+
It("machine network should be correlated with node networking [Suite:openshift/conformance/parallel]", func() {
199199
failIfNodeNetworkingInconsistentWithMachineNetwork(infra.Spec.PlatformSpec, machineNetworks)
200200
})
201201

202-
It("machines should have all specified portgroup associated with their failure domain", func() {
202+
It("machines should have all specified portgroup associated with their failure domain [Suite:openshift/conformance/parallel]", func() {
203203
failIfMachinesDoNotHaveAllPortgroups(infra.Spec.PlatformSpec, machines)
204204
})
205205

206-
It("node VMs should have all specified portgroups attached which are associated with their failure domain", func() {
206+
It("node VMs should have all specified portgroups attached which are associated with their failure domain [Suite:openshift/conformance/parallel]", func() {
207207
failIfIncorrectPortgroupsAttachedToVMs(ctx, infra.Spec.PlatformSpec, nodes, vsphereCreds)
208208
})
209209

210-
It("new machines should pass multi network tests", func() {
210+
It("new machines should pass multi network tests [Suite:openshift/conformance/parallel]", func() {
211211
machineSets, err := e2eutil.GetMachineSets(cfg)
212212
Expect(err).NotTo(HaveOccurred())
213213

0 commit comments

Comments
 (0)