From 299da87bf2d47a64516d46500bba37d79a25d970 Mon Sep 17 00:00:00 2001 From: Arvind Thirumurugan Date: Mon, 25 Nov 2024 17:57:52 -0800 Subject: [PATCH] fix: add test/apis directory for running test in makefile (#971) --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index ddebaddb9..e0d69740f 100644 --- a/Makefile +++ b/Makefile @@ -148,6 +148,7 @@ integration-test: $(ENVTEST) ## Run tests. export CGO_ENABLED=1 && \ export KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" && \ ginkgo -v -p --race --cover --coverpkg=./pkg/scheduler/... ./test/scheduler && \ + ginkgo -v -p --race --cover --coverpkg=./... ./test/apis/... && \ go test ./test/integration/... -coverpkg=./... -race -coverprofile=it-coverage.xml -v ## local tests & e2e tests