We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28541a0 commit 1b03f46Copy full SHA for 1b03f46
hack/openstack/test-manifests.sh
@@ -108,8 +108,11 @@ for testcase in "${tests_dir}"/* ; do
108
if [ -d "$testcase" ] && [[ "$testcase" =~ $run ]]; then
109
echo
110
echo "*** TEST CASE: $(basename "${testcase}")"
111
- ((test_counter+=1))
112
assets_dir="$(mktemp -d)"
+ if [[ "$persist" != 'NO' ]]; then
113
+ echo "Generated assets for this test can be found in ${assets_dir}"
114
+ fi
115
+ ((test_counter+=1))
116
temp_dirs+=("$assets_dir")
117
fill_install_config "${testcase}/install-config.yaml" > "${assets_dir}/install-config.yaml"
118
"$openshift_install" --log-level warn create manifests --dir "$assets_dir"
0 commit comments