4 lines
111 B
Bash
4 lines
111 B
Bash
|
#!/bin/bash
|
||
|
go test -race -v -coverpkg=./... -coverprofile=coverage.cov ./...
|
||
|
go tool cover -html=coverage.cov
|