|
|
@ -5,11 +5,11 @@ 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 |
|
|
|
go test -race -coverprofile=profile.out -covermode=atomic "$d" |
|
|
|
if [ -f profile.out ]; then |
|
|
|
cat profile.out >> coverage.txt |
|
|
|
rm profile.out |
|
|
|
fi |
|
|
|
done |
|
|
|
|
|
|
|
echo "==> Running integration tests (./tests)" |
|
|
|