this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

makefile: commands for alt test runs

+9 -1
+9 -1
Makefile
··· 26 26 all: build 27 27 28 28 .PHONY: test 29 - test: ## Run all tests 29 + test: ## Run tests 30 30 go test ./... 31 + 32 + .PHONY: test-short 33 + test-short: ## Run tests, skipping slower integration tests 34 + go test -test.short ./... 35 + 36 + .PHONY: test-interop 37 + test-interop: ## Run tests, including local interop (requires services running) 38 + go test -tags=localinterop ./... 31 39 32 40 .PHONY: coverage-html 33 41 coverage-html: ## Generate test coverage report and open in browser