Skip to content

Commit 01fca68

Browse files
authored
remove unused support for installing dep-crds for testing (#341)
1 parent 504db58 commit 01fca68

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Makefile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,8 @@ fmt: ## Run go fmt against code.
9494
vet: ## Run go vet against code.
9595
go vet ./...
9696

97-
EXTERNAL_CRDS_DIR ?= $(shell pwd)/dep-crds
98-
99-
KUEUE_ROOT = $(shell go list -m -mod=readonly -f "{{.Dir}}" sigs.k8s.io/kueue)
100-
.PHONY: dep-crds
101-
dep-crds: ## Copy CRDs from external operators to dep-crds directory.
102-
10397
.PHONY: test
104-
test: manifests generate fmt vet dep-crds envtest ## Run unit tests.
98+
test: manifests generate fmt vet envtest ## Run unit tests.
10599
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test $$(go list ./api/... ./internal/... ./pkg/...) -v -ginkgo.v -coverprofile cover.out
106100

107101
.PHONY: install

0 commit comments

Comments
 (0)