TAP 13 specification

See https://testanything.org/tap-version-13-specification.html
This commit is contained in:
Victor Martinez 2020-06-24 22:49:12 +01:00
parent 6b16354901
commit c26c3ddf8e
No known key found for this signature in database
GPG key ID: 4058B656AD58C4F5

View file

@ -564,7 +564,7 @@ LintAnsibleFiles()
####################################################### #######################################################
if [ -n "${OUTPUT_FORMAT}" ] ; then if [ -n "${OUTPUT_FORMAT}" ] ; then
echo "nok ok ${INDEX} - ${FILE}" >> "${TMPFILE}" echo "nok ok ${INDEX} - ${FILE}" >> "${TMPFILE}"
printf " ---\n but:[%s]\n ..." "$LINT_CMD" >> "${TMPFILE}" printf " ---\n message:[%s]\n ..." "$LINT_CMD" >> "${TMPFILE}"
fi fi
else else
########### ###########
@ -585,7 +585,7 @@ LintAnsibleFiles()
# Generate report in TAP format # # Generate report in TAP format #
################################# #################################
if [ -n "${OUTPUT_FORMAT}" ] && [ ${INDEX} -gt 0 ] ; then if [ -n "${OUTPUT_FORMAT}" ] && [ ${INDEX} -gt 0 ] ; then
echo "1..${INDEX}" > "${REPORT_OUTPUT_FILE}" printf "TAP version 13\n1..%s" "${INDEX}" > "${REPORT_OUTPUT_FILE}"
cat "${TMPFILE}" >> "${REPORT_OUTPUT_FILE}" cat "${TMPFILE}" >> "${REPORT_OUTPUT_FILE}"
fi fi
@ -1913,7 +1913,7 @@ LintCodebase()
####################################################### #######################################################
if [ -n "${OUTPUT_FORMAT}" ] ; then if [ -n "${OUTPUT_FORMAT}" ] ; then
echo "nok ok ${INDEX} - ${FILE}" >> "${TMPFILE}" echo "nok ok ${INDEX} - ${FILE}" >> "${TMPFILE}"
printf " ---\n but:[%s]\n ..." "$LINT_CMD" >> "${TMPFILE}" printf " ---\n message:[%s]\n ..." "$LINT_CMD" >> "${TMPFILE}"
fi fi
else else
@ -1935,7 +1935,7 @@ LintCodebase()
# Generate report in TAP format # # Generate report in TAP format #
################################# #################################
if [ -n "${OUTPUT_FORMAT}" ] && [ ${INDEX} -gt 0 ] ; then if [ -n "${OUTPUT_FORMAT}" ] && [ ${INDEX} -gt 0 ] ; then
echo "1..${INDEX}" > "${REPORT_OUTPUT_FILE}" printf "TAP version 13\n1..%s" "${INDEX}" > "${REPORT_OUTPUT_FILE}"
cat "${TMPFILE}" >> "${REPORT_OUTPUT_FILE}" cat "${TMPFILE}" >> "${REPORT_OUTPUT_FILE}"
fi fi
fi fi