Skip to content

Commit 2238079

Browse files
committed
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 <[email protected]>
1 parent bb08aa3 commit 2238079

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,12 @@ LDFLAGS = -ldflags "\
2626
default:
2727
$(MAKE) build
2828

29-
install-test-deps:
30-
go install github.com/onsi/ginkgo/v2/ginkgo@latest
31-
go install golang.org/x/crypto/...@latest
32-
go install github.com/lib/pq/...@latest
33-
3429
install-govulncheck:
3530
@if [ $(GO_MINOR_VERSION) -gt $(GOVULN_MIN_VERSION) ]; then \
3631
go install golang.org/x/vuln/cmd/govulncheck@latest; \
3732
fi
3833

39-
test: install-test-deps build-race fmt vet sec govulncheck
34+
test: build-race fmt vet sec govulncheck
4035
$(GINKGO) -v --fail-fast
4136

4237
fmt:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ require (
5656
google.golang.org/protobuf v1.36.8 // indirect
5757
)
5858

59-
go 1.24.0
59+
go 1.25.0

0 commit comments

Comments
 (0)