mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
17 lines
330 B
Bash
Executable file
17 lines
330 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -z "$GO" ]; then
|
|
export GO=go
|
|
fi
|
|
|
|
./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
|