Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
grafana / usr / share / grafana / scripts / circle-test-postgres.sh
Size: Mime:
#!/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