From 3db414974e8147e5d384b9e8adc0a6429294e6a0 Mon Sep 17 00:00:00 2001 From: Alexander Ding Date: Sat, 15 Oct 2022 02:45:10 +0000 Subject: [PATCH] test: comment out test-go and test-vet --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0cad3f0e..3df32f34 100644 --- a/Makefile +++ b/Makefile @@ -23,13 +23,13 @@ lint: $(GOLANGCI_LINT) test: test-go test-go: @ echo; echo "### $@:" - GO111MODULE=on go test ./pkg/... + @ echo "No need to run test. Testing is done in GitHub Actions and custom Prow job." .PHONY: test-vet test: test-vet test-vet: @ echo; echo "### $@:" - GO111MODULE=on go vet ./pkg/... + @ echo "No need to run vet. Testing is done in GitHub Actions and custom Prow job." # see https://github.com/golangci/golangci-lint#binary-release $(GOLANGCI_LINT):