From 6080afbfd33a0e0a1cdd59096bef2d9e354078a6 Mon Sep 17 00:00:00 2001 From: Philip Thompson Date: Wed, 2 Oct 2024 09:24:38 -0400 Subject: [PATCH] Skip another flaky e2e-test (#920) * Skip another flaky e2e-test * skip another! --- controllers/clientset_test.go | 1 + controllers/disruption_controller_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/controllers/clientset_test.go b/controllers/clientset_test.go index 8630c9ad9..028f1e18f 100644 --- a/controllers/clientset_test.go +++ b/controllers/clientset_test.go @@ -427,6 +427,7 @@ var _ = Describe("DisruptionCron Client", func() { Eventually(k8sClient.Delete).WithContext(ctx).WithArguments(&disruptionCron).Within(k8sAPIServerResponseTimeout).ProbeEvery(k8sAPIPotentialChangesEvery).Should(WithTransform(client.IgnoreNotFound, Succeed()), "Failed to delete DisruptionCron") }), Entry("when a disruptiocron is updated", watch.Modified, NodeTimeout(k8sAPIServerResponseTimeout), func(ctx SpecContext, disruptionCronName string) { + Skip("See CHAOSPLT-455: flaky test") _ = createDisruptionCron(ctx, namespace, disruptionCronName) // Fetch the most up to date disruptioncron diff --git a/controllers/disruption_controller_test.go b/controllers/disruption_controller_test.go index 0a31f0b97..a39c2175d 100644 --- a/controllers/disruption_controller_test.go +++ b/controllers/disruption_controller_test.go @@ -499,6 +499,7 @@ var _ = Describe("Disruption Controller", func() { Context("manually delete a chaos pod", func() { It("should properly handle the chaos pod finalizer", func(ctx SpecContext) { + Skip("See CHAOSPLT-455: flaky test") By("Ensuring that the chaos pods have been created") ExpectChaosPods(ctx, disruption, 4)