fix(run_unit_tests)_: proper TEST_WITH_COVERAGE_REPORTS_DIR path

This commit is contained in:
Igor Sirotin 2024-09-05 22:48:01 +01:00
parent 2438311f7c
commit cd6f2cce39
No known key found for this signature in database
GPG Key ID: 425E227CAAB81F95
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ run_test_for_packages() {
# Merge package coverage results # Merge package coverage results
go run ./cmd/test-coverage-utils/gocovmerge.go ${TEST_WITH_COVERAGE_REPORTS_DIR}/coverage.out.rerun.* > ${coverage_file} go run ./cmd/test-coverage-utils/gocovmerge.go ${TEST_WITH_COVERAGE_REPORTS_DIR}/coverage.out.rerun.* > ${coverage_file}
rm -f "${COVERAGE_REPORTS_DIR}/coverage.out.rerun.*" rm -f "${TEST_WITH_COVERAGE_REPORTS_DIR}/coverage.out.rerun.*"
echo "${go_test_exit}" > "${exit_code_file}" echo "${go_test_exit}" > "${exit_code_file}"
if [[ "${go_test_exit}" -ne 0 ]]; then if [[ "${go_test_exit}" -ne 0 ]]; then