mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
17 lines
325 B
Bash
Executable File
17 lines
325 B
Bash
Executable File
#!/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
|
|
}
|
|
|
|
export GRAFANA_TEST_DB=postgres
|
|
|
|
time for d in $(go list ./pkg/...); do
|
|
exit_if_fail go test -tags=integration $d
|
|
done |