10 lines
268 B
Bash
Executable File
10 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
pwd
|
|
go test -coverprofile=cover.out -v .
|
|
go test -coverprofile=utils.cover.out -v ./utils
|
|
echo "mode: set" > coverage.out && cat *.cover.out | grep -v mode: | sort -r | \
|
|
awk '{if($1 != last) {print $0;last=$1}}' >> coverage.out
|
|
rm -rf *.cover.out
|