diff --git a/tests/e2e/controlplane/control_plane_suite_test.go b/tests/e2e/controlplane/control_plane_suite_test.go index 298a3b152..a1b573984 100644 --- a/tests/e2e/controlplane/control_plane_suite_test.go +++ b/tests/e2e/controlplane/control_plane_suite_test.go @@ -42,13 +42,14 @@ var ( expectedRegistry = env.Get("EXPECTED_REGISTRY", "^docker\\.io|^gcr\\.io") bookinfoNamespace = env.Get("BOOKINFO_NAMESPACE", "bookinfo") multicluster = env.GetBool("MULTICLUSTER", false) + ipFamily = env.Get("IP_FAMILY", "ipv4") k kubectl.Kubectl ) func TestInstall(t *testing.T) { - if multicluster { - t.Skip("Skipping test for multicluster") + if ipFamily == "dual" || multicluster { + t.Skip("Skipping the control plane tests") } RegisterFailHandler(Fail) setup()