You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
export NUM_SERVERS=1
|
|
|
|
export NUM_AGENTS=1
|
|
|
|
export SERVER_ARGS='--no-deploy=traefik'
|
|
|
|
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
|
|
|
|
|
|
|
|
test-post-hook() {
|
|
|
|
if [[ $1 -eq 0 ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
local failures=$(awk '/^Summarizing .* Failures?:$/,0' "$TEST_DIR"/sonobuoy/plugins/e2e/results/global/e2e.log)
|
|
|
|
# Ignore sonobuoy failures if only these flaky tests have failed
|
|
|
|
flakyFails=$( grep -scF -f ./scripts/flaky-tests <<< "$failures" )
|
|
|
|
totalFails=$( grep -scF -e "[Fail]" <<< "$failures" )
|
|
|
|
[ "$totalFails" -le "$flakyFails" ]
|
|
|
|
}
|
|
|
|
export -f test-post-hook
|