1
0
Fork 0
mirror of https://github.com/retailcrm/api-client-go.git synced 2025-04-04 13:43:35 +03:00
api-client-go/go.test.sh

12 lines
No EOL
272 B
Bash
Executable file

#!/usr/bin/env bash
set -e
echo "" > coverage.txt
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