tests: less bash

This commit is contained in:
Zach Ramsay
2018-05-18 11:50:57 -04:00
parent b161f0e8c9
commit 308ce8b235
3 changed files with 18 additions and 19 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/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