Files
quic-go/.travis/after_success.sh
2017-06-11 11:33:10 +02:00

9 lines
178 B
Bash
Executable File

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