Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

❄️ Mark flaky tests as flaky #3333

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading