From ba59b7260b63b31f2303a50c026cfad21dbefabb Mon Sep 17 00:00:00 2001 From: jbrockmendel Date: Fri, 20 Dec 2019 09:35:22 -0800 Subject: [PATCH] CI: troubleshoot codecov --- ci/run_tests.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/run_tests.sh b/ci/run_tests.sh index 4c5dbabc81950..0b68164e5767e 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -37,8 +37,7 @@ echo $PYTEST_CMD sh -c "$PYTEST_CMD" if [[ "$COVERAGE" && $? == 0 && "$TRAVIS_BRANCH" == "master" ]]; then - SHA=`git rev-parse HEAD` echo "uploading coverage" - echo "bash <(curl -s https://codecov.io/bash) -Z -c -F $TYPE -f $COVERAGE_FNAME -C $SHA" - bash <(curl -s https://codecov.io/bash) -Z -c -F $TYPE -f $COVERAGE_FNAME -C `git rev-parse HEAD` + echo "bash <(curl -s https://codecov.io/bash) -Z -c -f $COVERAGE_FNAME" + bash <(curl -s https://codecov.io/bash) -Z -c -f $COVERAGE_FNAME fi