Skip to content

Commit a3b4f5d

Browse files
committed
include test tags
1 parent 429a4aa commit a3b4f5d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ help: ## Display this help message
9999
awk -F ':.*?## ' 'NF==2 {printf " %-26s%s\n", $$1, $$2}'
100100

101101
test: env ## Run all tests
102-
go test -v -count 1 -timeout 30s ./...
102+
go test -tags gssapi -v -count 1 -timeout 30s ./...
103103

104104
test-race: env ## Run all tests with race flag
105-
go test -race -v -timeout 30s ./...
105+
go test -tags gssapi -race -v -timeout 30s ./...
106106

107107
test-cover: env ## Run tests and collect cross-package coverage information
108-
go test -race -timeout 30s -coverprofile=cover.out -covermode=atomic -coverpkg=./... ./...
108+
go test -tags gssapi -race -timeout 30s -coverprofile=cover.out -covermode=atomic -coverpkg=./... ./...
109109

110110
test-cluster: env ## Starts MongoDB test cluster. Use env var TEST_MONGODB_IMAGE to set flavor and version. Example: TEST_MONGODB_IMAGE=mongo:3.6 make test-cluster
111111
docker compose up --build -d

0 commit comments

Comments
 (0)