Files
assetx/webapp-back/scripts/coverage.sh

20 lines
435 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
# http://stackoverflow.com/a/21142256/2055281
echo "mode: atomic" > coverage.out
for d in $(find ./* -maxdepth 10 -type d); do
if ls $d/*.go &> /dev/null; then
go test -coverprofile=profile.out -covermode=atomic $d
if [ -f profile.out ]; then
echo "$(pwd)"
cat profile.out | grep -v "mode: " >> coverage.out
rm profile.out
fi
fi
done