You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go test -count=1 -v ./test/extension-developer-e2e/...
210
210
211
-
UNIT_TEST_DIRS := $(shell go list ./... | grep -v /test/)
211
+
ENVTEST_VERSION := $(shell go list -m k8s.io/client-go | cut -d" " -f2 | sed 's/^v0\.\([[:digit:]]\{1,\}\)\.[[:digit:]]\{1,\}$$/1.\1.x/')
212
+
# Define TEST_PKGS to be either user-specified or a default set of packages:
213
+
ifeq ($(origin TEST_PKGS), undefined)
214
+
TEST_PKGS := $(shell go list ./... | grep -v /test/)
215
+
endif
212
216
COVERAGE_UNIT_DIR := $(ROOT_DIR)/coverage/unit
213
217
214
218
.PHONY: envtest-k8s-bins #HELP Uses setup-envtest to download and install the binaries required to run ENVTEST-test based locally at the project/bin directory.
@@ -225,7 +229,7 @@ test-unit: $(SETUP_ENVTEST) envtest-k8s-bins #HELP Run the unit tests
0 commit comments