Skip to content

Commit

Permalink
fixing lints
Browse files Browse the repository at this point in the history
Signed-off-by: ryanohnemus <[email protected]>
  • Loading branch information
ryanohnemus committed Feb 3, 2024
1 parent 38f78e0 commit 6874330
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions helpers/test-helpers.bash
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ function create_helm_extra_values_file() {
# by the test. This will fall back to $TEST_ROOT/defaults/values.yaml.tpl
# if not passed.
if [ -e "${HELM_VALUES_EXTRA_FILE}" ]; then
# shellcheck disable=SC2155
envsubst < "${HELM_VALUES_EXTRA_FILE}" > "$(dirname ${HELM_VALUES_EXTRA_FILE})/${TEST_NAMESPACE}.values.yaml"
# shellcheck disable=SC2086
export HELM_VALUES_EXTRA_FILE="$(dirname ${HELM_VALUES_EXTRA_FILE})/${TEST_NAMESPACE}.values.yaml"
fi
}
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function run_tests() {
# If TEST_NAMESPACE is not set (the default), we run jobs in parallel
# otherwise, if it is set we can only run 1 job at a time and need to remove
# all BATS_JOBS_PARAMS
if [[ ! -z "${TEST_NAMESPACE:-}" ]]; then
if [[ -n "${TEST_NAMESPACE:-}" ]]; then
BATS_JOBS_PARAMS=""
fi

Expand Down

0 comments on commit 6874330

Please sign in to comment.