···2626all: build
27272828.PHONY: test
2929-test: ## Run all tests
2929+test: ## Run tests
3030 go test ./...
3131+3232+.PHONY: test-short
3333+test-short: ## Run tests, skipping slower integration tests
3434+ go test -test.short ./...
3535+3636+.PHONY: test-interop
3737+test-interop: ## Run tests, including local interop (requires services running)
3838+ go test -tags=localinterop ./...
31393240.PHONY: coverage-html
3341coverage-html: ## Generate test coverage report and open in browser