Skip to content

Commit 528ec24

Browse files
committed
Add setup-envtest tests to test-all.sh
These tests are passing again.
1 parent d2a3b61 commit 528ec24

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,9 @@ help: ## Display this help
6969
## --------------------------------------
7070

7171
.PHONY: test
72-
test: test-tools ## Run the script check-everything.sh which will check all.
72+
test: ## Run the script check-everything.sh which will check all.
7373
TRACE=1 ./hack/check-everything.sh
7474

75-
.PHONY: test-tools
76-
test-tools: ## tests the tools codebase (setup-envtest)
77-
cd tools/setup-envtest && go test ./...
78-
7975
## --------------------------------------
8076
## Binaries
8177
## --------------------------------------

hack/test-all.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ fi
2626

2727
result=0
2828
go test -v -race ${P_FLAG} ${MOD_OPT} ./... --ginkgo.fail-fast ${GINKGO_ARGS} || result=$?
29+
(cd tools/setup-envtest && go test -v -race ${P_FLAG} ${MOD_OPT} ./... --ginkgo.fail-fast ${GINKGO_ARGS}) || result=$?
2930

3031
if [[ -n ${ARTIFACTS:-} ]]; then
3132
mkdir -p ${ARTIFACTS}

0 commit comments

Comments
 (0)