From 730359ab5ad2e015da4e963fa4de648aa63e860e Mon Sep 17 00:00:00 2001 From: lilypan26 Date: Mon, 28 Oct 2024 09:50:45 -0700 Subject: [PATCH] chore: add node-bootstrapper to make test target (#5165) Co-authored-by: Lily Pan Co-authored-by: Devinwong --- .github/workflows/go-test.yml | 2 +- Makefile | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 7cf0b56c141..01ad22c25c2 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -11,4 +11,4 @@ jobs: go-version: '1.22' - run: | make test - name: Run unit tests for go code in pkg/agent + name: Run unit tests for go code in the repository diff --git a/Makefile b/Makefile index 0c3368acb08..b01d90a6781 100644 --- a/Makefile +++ b/Makefile @@ -180,9 +180,12 @@ endif ginkgoBuild: generate make -C ./test/e2e ginkgo-build -test: +test: test-node-bootstrapper go test ./... +test-node-bootstrapper: + pushd node-bootstrapper && go test ./... && popd + .PHONY: test-style test-style: validate-go validate-shell validate-copyright-headers