grafana/scripts/circle-test-postgres.sh

11 lines
239 B
Bash
Raw Normal View History

2019-02-15 08:05:01 -06:00
#!/bin/bash
# shellcheck source=./scripts/helpers/exit-if-fail.sh
source "$(dirname "$0")/helpers/exit-if-fail.sh"
2019-02-15 08:05:01 -06:00
export GRAFANA_TEST_DB=postgres
time for d in $(go list ./pkg/...); do
exit_if_fail go test -tags=integration "$d"
done