From f5cb7823485b8f911f4442c97600392eabf97035 Mon Sep 17 00:00:00 2001 From: timvisee Date: Tue, 12 Nov 2024 16:41:06 +0100 Subject: [PATCH] Disallow warnings on startup --- test/integration/default_installation.bats | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/integration/default_installation.bats b/test/integration/default_installation.bats index 4316f37..a789775 100644 --- a/test/integration/default_installation.bats +++ b/test/integration/default_installation.bats @@ -9,15 +9,10 @@ setup_file() { } @test "no startup warnings in logs" { - skip "Skip for 1.12.2 which has a known warning" run kubectl logs -n qdrant-helm-integration qdrant-0 [ $status -eq 0 ] [[ "${output}" =~ .*INFO.* ]] - if [[ ! "${output}" =~ .*WARN.* ]]; then - echo "Found warning output:" - echo "${output}" - return 1 - fi + [[ ! "${output}" =~ .*WARN.* ]] } @test "no startup errors in logs" {