2019-02-15 15:05:01 +01:00
|
|
|
#!/bin/bash
|
2019-07-23 13:12:33 +03:00
|
|
|
|
|
|
|
|
# shellcheck source=./scripts/helpers/exit-if-fail.sh
|
|
|
|
|
source "$(dirname "$0")/helpers/exit-if-fail.sh"
|
2019-02-15 15:05:01 +01:00
|
|
|
|
|
|
|
|
export GRAFANA_TEST_DB=postgres
|
|
|
|
|
|
2019-04-28 12:28:01 +02:00
|
|
|
time for d in $(go list ./pkg/...); do
|
2019-07-23 13:12:33 +03:00
|
|
|
exit_if_fail go test -tags=integration "$d"
|
|
|
|
|
done
|