1
0
Fork 0
forked from Mirrors/gomuks
nyxmuks/scripts/coverage
2018-05-03 10:03:25 +03:00

8 lines
180 B
Bash
Executable file

#!/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