mirror of
https://github.com/optim-enterprises-bv/databunker.git
synced 2025-10-29 09:02:22 +00:00
10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd src
|
|
go test -coverprofile=/tmp/coverage.out
|
|
echo
|
|
echo "Test summary"
|
|
go tool cover -func=/tmp/coverage.out
|
|
echo
|
|
go tool cover -html=/tmp/coverage.out
|