Revision d571376e8f8ec44f54695a059d2fb14ec92ec0de authored by renovate[bot] on 13 December 2022, 12:04:34 UTC, committed by GitHub on 13 December 2022, 12:04:34 UTC
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 58feee0
Raw File
circle-test-mysql.sh
#!/bin/bash

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

export GRAFANA_TEST_DB=mysql

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