packer/vendor/github.com/posener/complete/test.sh
2017-10-13 11:57:38 -07:00

12 lines
No EOL
273 B
Bash
Executable file

#!/usr/bin/env bash
set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v vendor); do
go test -v -race -coverprofile=profile.out -covermode=atomic $d
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done