Revision 5df09bccb293dbc1ed25858e1c5ab796584ef9bd authored by George Robinson on 22 September 2023, 10:30:14 UTC, committed by grafana-delivery-bot[bot] on 22 September 2023, 10:31:50 UTC
(cherry picked from commit 15f6e8a5000e8c70d1a6a80ea1b84685dff20168)
1 parent 354c6a4
Raw File
circle-test-postgres.sh
#!/bin/bash

# shellcheck source=./scripts/helpers/exit-if-fail.sh
source "$(dirname "$0")/helpers/exit-if-fail.sh"

export GRAFANA_TEST_DB=postgres

time for d in $(go list ./pkg/...); do
 exit_if_fail go test -tags=integration "$d"
done
back to top