tendermint/abci/tests/test_cover.sh
Alexander Simmerl 4bee228ba7
Add abci repo
2018-06-22 02:36:54 +02:00

14 lines
303 B
Bash
Executable File

#!/usr/bin/env bash
set -e
echo "" > coverage.txt
echo "==> Running unit tests"
for d in $(go list ./... | grep -v vendor); do
go test -race -coverprofile=profile.out -covermode=atomic "$d"
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done