diff --git a/test_values_files.sh b/test_values_files.sh index 0da59aa..ddff457 100755 --- a/test_values_files.sh +++ b/test_values_files.sh @@ -5,7 +5,8 @@ set -e # for each file in the test_values directory # run helm install && helm uninstall for file in test_values/*.yaml; do - echo "Running test for $file" + echo "::group::Running test for $file" helm install --atomic --debug -f $file mirrord-operator ./mirrord-operator --wait helm uninstall mirrord-operator --wait + echo "::endgroup::" done