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 6212483 commit 0d022f7Copy full SHA for 0d022f7
Makefile
@@ -58,7 +58,10 @@ validation-executables: $(VALIDATION_TESTS)
58
$(VALIDATION_TESTS): %.t: %.go
59
go build -tags "$(BUILDTAGS)" ${TESTFLAGS} -o $@ $<
60
61
-.PHONY: test .gofmt .govet .golint
+print-validation-tests:
62
+ @echo $(VALIDATION_TESTS)
63
+
64
+.PHONY: test .gofmt .govet .golint print-validation-tests
65
66
PACKAGES = $(shell go list ./... | grep -v vendor)
67
test: .gofmt .govet .golint .gotest
0 commit comments