Skip to content

Commit fbeb2ba

Browse files
authored
chore: Re-enable test status check in cfn-publishing-helper.sh (#1633)
1 parent 498fbcf commit fbeb2ba

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

cfn-resources/cfn-publishing-helper.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,10 @@ for resource in ${resources}; do
8686
status=$(echo "${dt}" | jq -r '.TypeTestsStatus')
8787
echo "status=${status}"
8888
done
89-
# TODO: CLOUDP-380757 - Revert change when normal publishing is fixed.
90-
# if [[ "${status}" == "FAILED" || "${status}" == "NOT_TESTED" ]]; then
91-
# echo "Test_type STATUS is ${status}"
92-
# exit 1
93-
# fi
89+
if [[ "${status}" == "FAILED" || "${status}" == "NOT_TESTED" ]]; then
90+
echo "Test_type STATUS is ${status}"
91+
exit 1
92+
fi
9493
# Fetch the resource type
9594
cd -
9695
done

0 commit comments

Comments
 (0)