2 changed files with 10 additions and 0 deletions
@ -1,2 +1,3 @@ |
|||
go-ricochet-coverage.out |
|||
*~ |
|||
*.out |
|||
|
@ -0,0 +1,9 @@ |
|||
#!/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 |
Loading…
Reference in new issue