fix_: absolute path

This commit is contained in:
Igor Sirotin 2024-09-05 22:07:18 +01:00
parent 9b08b7e27a
commit 2438311f7c
No known key found for this signature in database
GPG Key ID: 425E227CAAB81F95

View File

@ -4,10 +4,13 @@ GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel)
source "${GIT_ROOT}/_assets/scripts/colors.sh"
source "${GIT_ROOT}/_assets/scripts/codecov.sh"
root_path=./integration-tests
root_path="${GIT_ROOT}/integration-tests"
coverage_reports_path="${root_path}/coverage"
test_results_path="${root_path}/reports"
# Create directories
mkdir -p "${GIT_ROOT}/integration-tests/coverage"
# Cleanup any previous coverage reports
rm -rf ${coverage_reports_path}
rm -rf ${test_results_path}