chore(scripts)_: add HEAD logging to run_unit_tests.sh

To check if #4993 is really resolved.
This commit is contained in:
Patryk Osmaczko 2024-05-22 13:40:40 +02:00 committed by osmaczko
parent 6fbf2cf17f
commit 568e07d2eb
1 changed files with 3 additions and 1 deletions

View File

@ -103,6 +103,8 @@ if [[ $UNIT_TEST_REPORT_CODECLIMATE == 'true' ]]; then
cc-test-reporter before-build
fi
echo -e "${GRN}Testing HEAD:${RST} $(git rev-parse HEAD)"
for package in ${UNIT_TEST_PACKAGES}; do
for ((i=1; i<=UNIT_TEST_COUNT; i++)); do
if ! is_parallelizable "${package}" || [[ "$UNIT_TEST_FAILFAST" == 'true' ]]; then
@ -139,4 +141,4 @@ if [[ "${UNIT_TEST_COUNT}" -gt 1 ]]; then
exit ${exit_code}
fi
done
fi
fi