From decd65671c473d4bd8e4f582a7ce61d6682c8fc5 Mon Sep 17 00:00:00 2001 From: Marcus Efraimsson Date: Sun, 28 Apr 2019 12:28:01 +0200 Subject: [PATCH] build: restore postgres integration tests (#16801) This fixes the CI script for postgres integration tests so that all tests are run. --- scripts/circle-test-postgres.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/circle-test-postgres.sh b/scripts/circle-test-postgres.sh index df4897484ad..7dc6232b1f2 100755 --- a/scripts/circle-test-postgres.sh +++ b/scripts/circle-test-postgres.sh @@ -12,7 +12,6 @@ function exit_if_fail { export GRAFANA_TEST_DB=postgres -exit_if_fail go test -v -run="StatsDataAccess" -tags=integration ./pkg/services/sqlstore/... -#time for d in $(go list ./pkg/...); do -# exit_if_fail go test -tags=integration $d -#done \ No newline at end of file +time for d in $(go list ./pkg/...); do + exit_if_fail go test -tags=integration $d +done \ No newline at end of file