mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
10 lines
279 B
Bash
Executable file
10 lines
279 B
Bash
Executable file
#!/bin/sh
|
|
./build_cover.sh
|
|
|
|
clean() {
|
|
rm -f /tmp/maddy-coverage-report*
|
|
}
|
|
trap clean EXIT
|
|
|
|
go test -tags integration -integration.executable ./maddy.cover -integration.coverprofile /tmp/maddy-coverage-report "$@"
|
|
go run gocovcat.go /tmp/maddy-coverage-report* > coverage.out
|