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