Skip to content

Commit

Permalink
Disallow warnings on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
timvisee committed Nov 12, 2024
1 parent 88c88b9 commit f5cb782
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions test/integration/default_installation.bats
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit f5cb782

Please sign in to comment.