Skip to content

Commit 1c5a37e

Browse files
Generated commit to update templated files based on rev 159aead in stackabletech/operator-templating repo. (#369)
Triggered by: Manual run triggered by: razvan with message [fix run_tests.sh parallel option]
1 parent 485cb20 commit 1c5a37e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/run_tests.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,10 @@ run_tests() {
8888
fi
8989

9090
pushd "$TEST_ROOT" || exit
91-
kubectl-kuttl "${OPTS[@]}"
91+
# Disable SC2068 because we want to pass the array as individual arguments
92+
# and it would break for the "--parallel n" option.
93+
# shellcheck disable=SC2068
94+
kubectl-kuttl ${OPTS[@]}
9295
popd || exit
9396
}
9497

0 commit comments

Comments
 (0)