maddy/tests/run.sh
2020-02-18 17:38:15 +03:00

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