Fela Maslen 5 лет назад
Родитель
Сommit
fc88eaf559
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      gmus-backend/Makefile

+ 2 - 2
gmus-backend/Makefile

@@ -29,12 +29,12 @@ clean:
 fmt:
 fmt:
 	@go fmt github.com/felamaslen/gmus-backend/...
 	@go fmt github.com/felamaslen/gmus-backend/...
 lint:
 lint:
-	@test -z $(shell gofmt -l .) || (echo "Found formatting issues; run \"make fmt\" to fix"; exit 1)
+	@test -z $(shell gofmt -l .) && echo "Lint ok" || (echo "Found formatting issues; run \"make fmt\" to fix"; exit 1)
 
 
 test:
 test:
 	GO_ENV=test ginkgo ./...
 	GO_ENV=test ginkgo ./...
 test.ci:
 test.ci:
-	GO_ENV=ci ginkgo ./...
+	GO_ENV=ci ginkgo --randomizeAllSpecs --randomizeSuites --failOnPending --cover --trace --race --progress --noColor ./...
 
 
 migrate:
 migrate:
 	go run ./cmd/gmus.migrate
 	go run ./cmd/gmus.migrate