Files
gocryptotrader/test.sh
Adrian Gallagher 86d52ef845 Add test script
2017-04-03 02:46:47 -07:00

13 lines
271 B
Bash
Executable File

#!/usr/bin/env bash
set -e
echo "" > coverage.txt
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