4 lines
108 B
Bash
Executable File
4 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
go test -coverprofile=coverage.out ./...
|
|
go tool cover -html=coverage.out -o test_coverage.html
|