Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,8 @@ fmt: ## Run go fmt against code.
vet: ## Run go vet against code.
go vet ./...

EXTERNAL_CRDS_DIR ?= $(shell pwd)/dep-crds

KUEUE_ROOT = $(shell go list -m -mod=readonly -f "{{.Dir}}" sigs.k8s.io/kueue)
.PHONY: dep-crds
dep-crds: ## Copy CRDs from external operators to dep-crds directory.

.PHONY: test
test: manifests generate fmt vet dep-crds envtest ## Run unit tests.
test: manifests generate fmt vet envtest ## Run unit tests.
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

.PHONY: install
Expand Down
Loading