Quellcode durchsuchen

update coverall script

Darien Raymond vor 7 Jahren
Ursprung
Commit
07ca87990d
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      testing/coverage/coverall

+ 2 - 1
testing/coverage/coverall

@@ -45,7 +45,8 @@ cat ${COVERAGE_FILE} | sort -t: -k1 | grep -vw "testing" | grep -v ".pb.go" | gr
 echo "mode: set" | cat - ${COV_SORTED} > ${COVERAGE_FILE}
 
 if [ "$FAIL" -eq 0 ]; then
-  bash <(curl -s https://codecov.io/bash) -f ${COVERAGE_FILE} || echo "Codecov did not collect coverage reports."
+  echo "Uploading coverage datea to codecov."
+  bash <(curl -s https://codecov.io/bash) -f ${COVERAGE_FILE} -v || echo "Codecov did not collect coverage reports."
 fi
 
 exit $FAIL