Files
quic-go/.travis/after_success.sh
2017-08-27 18:09:01 +07:00

9 lines
179 B
Bash
Executable File

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