pudb/upload_coverage.sh

12 lines
169 B
Bash
Raw Normal View History

2017-04-06 18:52:23 +03:00
#!/bin/bash
if [ -z "$COVERAGE" ]; then
echo "coverage is not selected for this build"
exit 0
fi
echo "uploading coverage"
2017-04-09 01:36:00 +03:00
cd test
eval "codecov --token=$COVERAGE"