2019-11-01 16:48:28 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
export NUM_SERVERS=1
|
|
|
|
export NUM_AGENTS=1
|
2022-11-01 22:43:31 +00:00
|
|
|
export SERVER_ARGS='--disable=traefik'
|
2019-11-01 16:48:28 +00:00
|
|
|
export WAIT_SERVICES='coredns local-path-provisioner metrics-server'
|
|
|
|
|
|
|
|
export sonobuoyParallelArgs=(--e2e-focus='\[Conformance\]' --e2e-skip='\[Serial\]' --e2e-parallel=y)
|
|
|
|
export sonobuoySerialArgs=(--e2e-focus='\[Serial\].*\[Conformance\]')
|
|
|
|
|
|
|
|
start-test() {
|
|
|
|
sonobuoy-test $@
|
|
|
|
}
|
|
|
|
export -f start-test
|
2022-01-31 18:57:23 +00:00
|
|
|
|
|
|
|
test-post-hook() {
|
2022-11-01 22:43:31 +00:00
|
|
|
if [[ $1 -eq 0 ]] || [[ ! -f "$TEST_DIR/sonobuoy/plugins/e2e/results/global/e2e.log" ]]; then
|
|
|
|
return $1
|
2022-01-31 18:57:23 +00:00
|
|
|
fi
|
2022-11-01 22:43:31 +00:00
|
|
|
local failures=$(awk '/^Summarizing .* Failures?:$/,0' "$TEST_DIR/sonobuoy/plugins/e2e/results/global/e2e.log")
|
2022-01-31 18:57:23 +00:00
|
|
|
# Ignore sonobuoy failures if only these flaky tests have failed
|
2022-06-07 16:37:13 +00:00
|
|
|
flakyFails=$( grep -scF -f ./scripts/flaky-tests <<< "$failures" )
|
2022-01-31 18:57:23 +00:00
|
|
|
totalFails=$( grep -scF -e "[Fail]" <<< "$failures" )
|
|
|
|
[ "$totalFails" -le "$flakyFails" ]
|
|
|
|
}
|
2022-11-01 22:43:31 +00:00
|
|
|
export -f test-post-hook
|