Skip to content

Commit

Permalink
feat: add Makefile target for conformance test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneutt committed Jun 12, 2023
1 parent 7e3d20d commit 35f80de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ test.performance: manifests generate fmt vet
go clean -testcache
GOFLAGS="-tags=performance_tests" go test -race -v ./test/performance/...

.PHONY: test.conformance
test.conformance: manifests generate fmt vet
go clean -testcache
GOFLAGS="-tags=conformance_tests" go test -race -v ./test/conformance/...

##@ Build

.PHONY: build
Expand Down Expand Up @@ -185,7 +190,7 @@ KTF ?= $(LOCALBIN)/ktf
## Tool Versions
KUSTOMIZE_VERSION ?= v3.8.7
CONTROLLER_TOOLS_VERSION ?= v0.9.2
KIND_VERSION ?= v0.17.0
KIND_VERSION ?= v0.19.0

KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
.PHONY: kustomize
Expand Down

0 comments on commit 35f80de

Please sign in to comment.