We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbeb2ba commit 937a5aaCopy full SHA for 937a5aa
1 file changed
cfn-resources/cfn-publishing-helper.sh
@@ -78,6 +78,9 @@ for resource in ${resources}; do
78
test_type_resp=$(aws cloudformation test-type --type RESOURCE --type-name "${res_type}" --log-delivery-bucket "${_CFN_TEST_LOG_BUCKET}" --version-id "${version}")
79
arn=$(echo "${test_type_resp}" | jq -r '.TypeVersionArn')
80
sleep 60
81
+ dt=$(aws cloudformation describe-type --arn "${arn}")
82
+ status=$(echo "${dt}" | jq -r '.TypeTestsStatus')
83
+ echo "status after NOT_TESTED re-trigger=${status}"
84
fi
85
86
while [[ "$status" == "IN_PROGRESS" ]]; do
0 commit comments