Skip to content

Commit

Permalink
mark flaky tests (#3333)
Browse files Browse the repository at this point in the history
Signed-off-by: Per Goncalves da Silva <pegoncal@redhat.com>
Co-authored-by: Per Goncalves da Silva <pegoncal@redhat.com>
  • Loading branch information
perdasilva and Per Goncalves da Silva committed Jul 2, 2024
1 parent 2a24a0f commit 25aa039
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/e2e/fail_forward_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ var _ = Describe("Fail Forward Upgrades", func() {
Expect(err).Should(BeNil())
})

It("eventually reports a successful state when using replaces", func() {
It("[FLAKE] eventually reports a successful state when using replaces", func() {
By("patching the catalog with a fixed version")
cleanup, deployError := updateCatalogSource(generatedNamespace.GetName(), catalogSourceName, "v0.1.0", "v0.2.0-invalid-deployment", "v0.3.0-replaces-invalid-deployment")
Expect(deployError).To(BeNil())
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/installplan_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,7 @@ var _ = Describe("Install Plan", func() {
// excluded: new CRD, same version, same schema - won't trigger a CRD update

tableEntries := []TableEntry{
Entry("upgrade CRD with deprecated version", schemaPayload{
Entry("[FLAKE] upgrade CRD with deprecated version", schemaPayload{
name: "upgrade CRD with deprecated version",
expectedPhase: operatorsv1alpha1.InstallPlanPhaseComplete,
oldCRD: func() *apiextensionsv1.CustomResourceDefinition {
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/operator_condition_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var _ = Describe("Operator Condition", func() {
TeardownNamespace(generatedNamespace.GetName())
})

It("OperatorCondition Upgradeable type and overrides", func() {
It("[FLAKE] OperatorCondition Upgradeable type and overrides", func() {
By("This test proves that an operator can upgrade successfully when" +
" Upgrade condition type is set in OperatorCondition spec. Plus, an operator" +
" chooses not to use OperatorCondition, the upgrade process will proceed as" +
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/subscription_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1408,7 +1408,7 @@ var _ = Describe("Subscription", func() {

})

It("creation with dependencies", func() {
It("[FLAKE] creation with dependencies", func() {

kubeClient := newKubeClient()
crClient := newCRClient()
Expand Down Expand Up @@ -2567,7 +2567,7 @@ var _ = Describe("Subscription", func() {
Expect(err).Should(BeNil())
})

It("should report only package and channel deprecation conditions when bundle is no longer deprecated", func() {
It("[FLAKE] should report only package and channel deprecation conditions when bundle is no longer deprecated", func() {
By("patching the OperatorGroup to reduce the bundle unpacking timeout")
ogNN := types.NamespacedName{Name: operatorGroup.GetName(), Namespace: generatedNamespace.GetName()}
addBundleUnpackTimeoutOGAnnotation(context.Background(), ctx.Ctx().Client(), ogNN, "5m")
Expand Down

0 comments on commit 25aa039

Please sign in to comment.