Browse Source

adds integration tests to ci build

bergquist 7 years ago
parent
commit
dbcc2e868d
2 changed files with 1 additions and 3 deletions
  1. 0 2
      pkg/infra/serverlock/serverlock.go
  2. 1 1
      scripts/circle-test-backend.sh

+ 0 - 2
pkg/infra/serverlock/serverlock.go

@@ -13,8 +13,6 @@ func init() {
 	registry.RegisterService(&ServerLockService{})
 	registry.RegisterService(&ServerLockService{})
 }
 }
 
 
-// DistributedLockService
-
 // ServerLockService allows servers in HA mode to claim a lock
 // ServerLockService allows servers in HA mode to claim a lock
 // and execute an function if the server was granted the lock
 // and execute an function if the server was granted the lock
 type ServerLockService struct {
 type ServerLockService struct {

+ 1 - 1
scripts/circle-test-backend.sh

@@ -19,5 +19,5 @@ exit_if_fail time go install ./pkg/cmd/grafana-server
 echo "running go test"
 echo "running go test"
 set -e
 set -e
 time for d in $(go list ./pkg/...); do
 time for d in $(go list ./pkg/...); do
-  exit_if_fail go test -covermode=atomic $d
+  exit_if_fail go test -tags=integration -covermode=atomic $d
 done
 done