We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30fdafc commit ea47e63Copy full SHA for ea47e63
Makefile
@@ -18,7 +18,7 @@ fmtcheck: ## Check go formatting
18
@gofmt -l $(SOURCES) | grep ".*\.go"; if [ "$$?" = "0" ]; then exit 1; fi
19
20
test: ## Run unit tests
21
- @go test -race -covermode atomic -coverprofile cover.out $(addprefix ./, $(addsuffix /... , $(SOURCE_DIRS)))
+ @go test -race -covermode atomic -tags integration -coverprofile cover.out $(addprefix ./, $(addsuffix /... , $(SOURCE_DIRS)))
22
23
vet: ## Run go vet
24
@go vet $(addprefix ./, $(SOURCE_DIRS))
0 commit comments