after_success.sh 179 B

12345678
  1. #!/usr/bin/env bash
  2. set -ex
  3. if [ ${TESTMODE} == "unit" ]; then
  4. cat `find . -name "*.coverprofile"` > coverage.txt
  5. bash <(curl -s https://codecov.io/bash) -f coverage.txt
  6. fi