Revision 167bad070bd7e3cccdd9709fcf07d7f9e0bbed0c authored by Alex Khomenko on 12 May 2021, 15:33:36 UTC, committed by GitHub on 12 May 2021, 15:33:36 UTC
* TimeRangeInput: add disabled prop

* TimeOfDayPicker: add disabled prop

* TimeZonePicker: add disabled prop

* TagsInput: add disabled prop
1 parent 6200c40
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