We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 498fbcf commit fbeb2baCopy full SHA for fbeb2ba
1 file changed
cfn-resources/cfn-publishing-helper.sh
@@ -86,11 +86,10 @@ for resource in ${resources}; do
86
status=$(echo "${dt}" | jq -r '.TypeTestsStatus')
87
echo "status=${status}"
88
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
+ if [[ "${status}" == "FAILED" || "${status}" == "NOT_TESTED" ]]; then
+ echo "Test_type STATUS is ${status}"
+ exit 1
+ fi
94
# Fetch the resource type
95
cd -
96
0 commit comments