Revision 5641029a4afe3c368ecf6d38ee36c998083acc07 authored by sam boyer on 11 October 2022, 09:39:29 UTC, committed by GitHub on 11 October 2022, 09:39:29 UTC
1 parent 10a34a0
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