gather test coverage

This commit is contained in:
Anton Kaliaev
2017-11-21 18:12:12 -06:00
parent 52ec4efe27
commit 7868a3358f
2 changed files with 23 additions and 5 deletions

18
test.sh Executable file
View File

@ -0,0 +1,18 @@
#!/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
echo "==> Running integration tests (./tests)"
find . -path ./vendor -prune -o -name "*.sock" -exec rm {} \;
make install
bash tests/test.sh