diff --git a/pkg/framework/test/scripts/run-tests.sh b/pkg/framework/test/scripts/run-tests.sh index 75bedead9..cf2e67602 100755 --- a/pkg/framework/test/scripts/run-tests.sh +++ b/pkg/framework/test/scripts/run-tests.sh @@ -4,18 +4,17 @@ set -eu # Use DEBUG=1 ./scripts/run-tests.sh to get debug output [[ -z "${DEBUG:-""}" ]] || set -x -declare -a ginkgo_args - +GINKGO="ginkgo" if [[ -n "${GINKGO_WATCH:-""}" ]] ; then - ginkgo_args=( "${ginkgo_args[@]}" "watch" ) + GINKGO="$GINKGO watch" fi if [[ -z ${GINKGO_PERFORMANCE:-""} ]] ; then - ginkgo_args=( "${ginkgo_args[@]}" "-skipMeasurements" ) + GINKGO="$GINKGO -skipMeasurements" fi test_framework_dir="$(cd "$(dirname "$0")/.." ; pwd)" export KUBE_ASSETS_DIR="${test_framework_dir}/assets/bin" -ginkgo "${ginkgo_args[@]}" -r "${test_framework_dir}" +$GINKGO -r "${test_framework_dir}"