From 80eadb966338fb108f3b0852c958f8a5492508ab Mon Sep 17 00:00:00 2001 From: Joseph Chen <76720045+jchen6585@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:55:47 -0800 Subject: [PATCH] Skip POD_MTU test until future release (#2803) Co-authored-by: Joseph Chen --- test/integration/cni/host_networking_test.go | 1 + test/integration/ipv6/ipv6_host_networking_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/test/integration/cni/host_networking_test.go b/test/integration/cni/host_networking_test.go index a2e8bfde14..89114f6e79 100644 --- a/test/integration/cni/host_networking_test.go +++ b/test/integration/cni/host_networking_test.go @@ -114,6 +114,7 @@ var _ = Describe("test host networking", func() { mtuValidationTest(false, NEW_MTU_VAL) }) It("POD MTU", func() { + Skip("Skip this test until v1.16.4 is released") mtuValidationTest(true, NEW_POD_MTU) }) }) diff --git a/test/integration/ipv6/ipv6_host_networking_test.go b/test/integration/ipv6/ipv6_host_networking_test.go index 46d097d2fd..ffb9b1a548 100644 --- a/test/integration/ipv6/ipv6_host_networking_test.go +++ b/test/integration/ipv6/ipv6_host_networking_test.go @@ -110,6 +110,7 @@ var _ = Describe("[CANARY] test ipv6 host netns setup", func() { mtuValidationTest(false, NEW_MTU_VAL) }) It("POD MTU", func() { + Skip("Skip this test until v1.16.4 is released") mtuValidationTest(true, NEW_POD_MTU) }) })