grafana/scripts/circle-test-backend.sh

24 lines
536 B
Bash
Raw Normal View History

#!/bin/bash
function exit_if_fail {
command=$@
echo "Executing '$command'"
eval $command
rc=$?
if [ $rc -ne 0 ]; then
echo "'$command' returned $rc."
exit $rc
fi
}
echo "running go fmt"
exit_if_fail test -z \"'$(gofmt -s -l ./pkg | tee /dev/stderr)'\"
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
echo "running go test"
2018-04-17 02:00:55 -05:00
set -e
time for d in $(go list ./pkg/...); do
2018-12-12 06:47:21 -06:00
exit_if_fail go test -tags=integration -covermode=atomic $d
2018-04-17 02:00:55 -05:00
done