9 lines
180 B
Plaintext
9 lines
180 B
Plaintext
|
#!/bin/bash
|
||
|
mkdir -p target/
|
||
|
go test ./... -coverprofile=target/coverage.out
|
||
|
if [ ! -z $1 ]; then
|
||
|
go tool cover -html=coverage.out -o $1
|
||
|
else
|
||
|
go tool cover -html=coverage.out
|
||
|
fi
|