Skip to content

Commit d9edce3

Browse files
committed
Disable the local label
1 parent 9904794 commit d9edce3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

cmd/cluster-version-operator-tests/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func main() {
2424
Name: "openshift/cluster-version-operator/conformance/parallel",
2525
Parents: []string{"openshift/conformance/parallel"},
2626
Qualifiers: []string{
27-
`!(name.contains("[Serial]") || "Serial" in labels || name.contains("[Slow]") || "Local" in labels)`,
27+
`!(name.contains("[Serial]") || "Serial" in labels || name.contains("[Slow]"))`,
2828
},
2929
})
3030

@@ -33,7 +33,7 @@ func main() {
3333
Name: "openshift/cluster-version-operator/conformance/serial",
3434
Parents: []string{"openshift/conformance/serial"},
3535
Qualifiers: []string{
36-
`(name.contains("[Serial]") || "Serial" in labels) && !("Local" in labels)`,
36+
`name.contains("[Serial]") || "Serial" in labels`,
3737
},
3838
})
3939

test/cvo/accept_risks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ var _ = g.Describe(`[Jira:"Cluster Version Operator"] cluster-version-operator`,
6868
}
6969
})
7070

71-
g.It("should work with risks from alerts", g.Label("OTA-1813"), g.Label("Serial"), g.Label("Local"), func() {
71+
g.It("should work with risks from alerts", g.Label("OTA-1813"), g.Label("Serial"), func() {
7272
// This test case relies on a public service util.FauxinnatiAPIURL
7373
o.Expect(util.SkipIfNetworkRestricted(ctx, c, util.FauxinnatiAPIURL)).To(o.BeNil())
7474

0 commit comments

Comments
 (0)