go-xmpp/test.sh

14 lines
297 B
Bash
Raw Normal View History

2018-01-01 18:02:30 +00:00
#!/usr/bin/env bash
set -e
export GO111MODULE=on
2018-01-01 18:02:30 +00:00
echo "" > coverage.txt
for d in $(go list ./... | grep -v vendor); do
go test -race -coverprofile=profile.out -covermode=atomic "${d}"
2018-01-01 18:02:30 +00:00
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done