2016-09-14 22:16:06 +08:00
|
|
|
#!/bin/bash
|
2019-07-23 18:12:33 +08:00
|
|
|
|
|
|
|
# shellcheck source=./scripts/helpers/exit-if-fail.sh
|
|
|
|
source "$(dirname "$0")/helpers/exit-if-fail.sh"
|
2016-09-14 22:16:06 +08:00
|
|
|
|
2017-10-23 15:06:08 +08:00
|
|
|
echo "building backend with install to cache pkgs"
|
|
|
|
exit_if_fail time go install ./pkg/cmd/grafana-server
|
2016-09-15 19:52:38 +08:00
|
|
|
|
2017-02-24 16:22:57 +08:00
|
|
|
echo "running go test"
|
2018-04-17 15:00:55 +08:00
|
|
|
set -e
|
|
|
|
time for d in $(go list ./pkg/...); do
|
2019-07-23 18:12:33 +08:00
|
|
|
exit_if_fail go test -tags=integration -covermode=atomic "$d"
|
2018-04-17 15:00:55 +08:00
|
|
|
done
|