Remove manual test deps

It is not required anymore to install the test dependencies seprately.
They are now managed by the go module file.

Change-Id: I67bb8ca4619e36477a62b24692b795e16c89397b
Signed-off-by: Cosmin Cojocar <ccojocar@google.com>
This commit is contained in:
Cosmin Cojocar
2025-10-02 09:43:23 +00:00
committed by Cosmin Cojocar
parent bb08aa3188
commit 2238079261
2 changed files with 2 additions and 7 deletions

View File

@@ -26,17 +26,12 @@ LDFLAGS = -ldflags "\
default:
$(MAKE) build
install-test-deps:
go install github.com/onsi/ginkgo/v2/ginkgo@latest
go install golang.org/x/crypto/...@latest
go install github.com/lib/pq/...@latest
install-govulncheck:
@if [ $(GO_MINOR_VERSION) -gt $(GOVULN_MIN_VERSION) ]; then \
go install golang.org/x/vuln/cmd/govulncheck@latest; \
fi
test: install-test-deps build-race fmt vet sec govulncheck
test: build-race fmt vet sec govulncheck
$(GINKGO) -v --fail-fast
fmt:

2
go.mod
View File

@@ -56,4 +56,4 @@ require (
google.golang.org/protobuf v1.36.8 // indirect
)
go 1.24.0
go 1.25.0