From ee44f2c5126a7ffacf8ace4c1f375ec7377b6b24 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Tue, 8 Oct 2024 20:41:24 +0400 Subject: [PATCH] test: skip no error test in Cilium This test often fails due to etcd leader changes. Signed-off-by: Andrey Smirnov (cherry picked from commit a9bff3a1d084c32a654555e71e2592e60edbdcb6) --- hack/test/e2e.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/test/e2e.sh b/hack/test/e2e.sh index a2a805f325..d2e2b327e2 100755 --- a/hack/test/e2e.sh +++ b/hack/test/e2e.sh @@ -163,11 +163,11 @@ function install_and_run_cilium_cni_tests { case "${WITH_KUBESPAN:-false}" in true) CILIUM_NODE_ENCRYPTION=false - CILIUM_TEST_EXTRA_ARGS=("--test="!node-to-node-encryption"") + CILIUM_TEST_EXTRA_ARGS=("--test=!node-to-node-encryption,!check-log-errors") ;; *) CILIUM_NODE_ENCRYPTION=true - CILIUM_TEST_EXTRA_ARGS=() + CILIUM_TEST_EXTRA_ARGS=("--test=!check-log-errors") ;; esac