2018-08-18 09:27:47 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
echo "" > coverage.txt
|
|
|
|
|
2019-09-15 11:51:47 +02:00
|
|
|
export GOFLAGS=-mod=vendor
|
|
|
|
|
2019-02-16 02:35:35 +02:00
|
|
|
use_go_test=false
|
|
|
|
if command -v gotest; then
|
|
|
|
use_go_test=true
|
|
|
|
fi
|
|
|
|
|
2018-09-01 17:22:23 +02:00
|
|
|
for d in $( find ./* -maxdepth 10 ! -path "./vendor*" ! -path "./.git*" ! -path "./scripts*" -type d); do
|
2018-08-18 09:27:47 +02:00
|
|
|
if ls $d/*.go &> /dev/null; then
|
2019-04-07 05:08:54 +02:00
|
|
|
args="-race -coverprofile=profile.out -covermode=atomic $d"
|
2019-02-16 02:35:35 +02:00
|
|
|
if [ "$use_go_test" == true ]; then
|
|
|
|
gotest $args
|
|
|
|
else
|
|
|
|
go test $args
|
|
|
|
fi
|
2018-08-18 09:27:47 +02:00
|
|
|
if [ -f profile.out ]; then
|
|
|
|
cat profile.out >> coverage.txt
|
|
|
|
rm profile.out
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|