From 65c55091170432c442552deff6bc0918fdb41f95 Mon Sep 17 00:00:00 2001 From: Gaurav Ghildiyal Date: Mon, 25 Sep 2023 13:04:49 -0700 Subject: [PATCH] Run tests for gwctl when 'make test' is called --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e8696c0a4b..5f55bf9ade 100644 --- a/Makefile +++ b/Makefile @@ -83,6 +83,7 @@ vet: # Run go test against code test: go test -race -cover ./pkg/admission/... ./apis/... ./conformance/utils/... + cd gwctl && go test -race -cover ./pkg/... # Run conformance tests against controller implementation .PHONY: conformance