Skip to content

Commit

Permalink
Merge branch 'main' into fix/dag-plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
adwk67 committed Mar 14, 2024
2 parents 85e901e + c0ba0f4 commit 8b4a4b8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .readme/partials/borrowed/footer.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ And our internal operators:

## Contributing

Contributions are welcome. Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
Contributions are welcome.
Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
All contributors will have to sign a [Contributor License Agreement](https://github.com/stackabletech/.github/blob/main/cla.md).
This is enforced automatically when you submit a Pull Request where a bot will guide you through the process.

## License

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ And our internal operators:

## Contributing

Contributions are welcome. Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
Contributions are welcome.
Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
All contributors will have to sign a [Contributor License Agreement](https://github.com/stackabletech/.github/blob/main/cla.md).
This is enforced automatically when you submit a Pull Request where a bot will guide you through the process.

## License

Expand Down
6 changes: 4 additions & 2 deletions scripts/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,14 @@ run_tests() {
OPTS+=("--test=$KUTTL_TEST")
fi

pushd "$TEST_ROOT" || exit
pushd "$TEST_ROOT" || exit 1
# Disable SC2068 because we want to pass the array as individual arguments
# and it would break for the "--parallel n" option.
# shellcheck disable=SC2068
kubectl-kuttl ${OPTS[@]}
popd || exit
local KUTTL_EXIT_CODE=$?
popd || exit 1
exit $KUTTL_EXIT_CODE
}

usage() {
Expand Down

0 comments on commit 8b4a4b8

Please sign in to comment.