From ff7c349f11ac066716ac0336b32492bf46fc3f82 Mon Sep 17 00:00:00 2001 From: John R Barker Date: Thu, 9 Nov 2017 22:12:50 +0000 Subject: [PATCH] Provide details via DCI Env (#32770) --- test/utils/dci/dci-coverage.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/utils/dci/dci-coverage.sh b/test/utils/dci/dci-coverage.sh index 4921ef6dcef..249844eb36a 100755 --- a/test/utils/dci/dci-coverage.sh +++ b/test/utils/dci/dci-coverage.sh @@ -4,11 +4,6 @@ set -o pipefail # Script invoked by DCI-Agents hooks/post-running.yml -# Platform: $1 = (ios, openvswitch, vyos, ...) -# Branch: $2 = (devel, stable-2.4, ...) - -test="dci/$1" -branch="$2" if find test/results/coverage/ -mindepth 1 -name '.*' -prune -o -print -quit | grep -q .; then stub="" @@ -26,7 +21,6 @@ if find test/results/coverage/ -mindepth 1 -name '.*' -prune -o -print -quit | g bash <(curl -s https://codecov.io/bash) \ -f "${file}" \ -F "${flags}" \ - -n "${test}" \ -t 83cd8957-dc76-488c-9ada-210dcea51633 \ -X coveragepy \ -X gcov \ @@ -34,8 +28,6 @@ if find test/results/coverage/ -mindepth 1 -name '.*' -prune -o -print -quit | g -X search \ -X xcode \ -K \ - -B "$branch" \ - -r "ansible/ansible" \ || echo "Failed to upload code coverage report to codecov.io: ${file}" done fi