Skip to content

Commit 94f22bc

Browse files
committed
chore: disable test caching and bump controller-runtime
Signed-off-by: Richard Case <[email protected]>
1 parent ae8ab0a commit 94f22bc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,11 +419,11 @@ setup-envtest: install-setup-envtest # Build setup-envtest from tools folder.
419419

420420
.PHONY: test
421421
test: setup-envtest ## Run tests
422-
KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test ./...
422+
KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test -count=1 ./...
423423

424424
.PHONY: test-verbose
425425
test-verbose: setup-envtest ## Run tests with verbose settings.
426-
KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test -v ./...
426+
KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test -v -count=1 ./...
427427

428428
.PHONY: test-e2e ## Run e2e tests using clusterctl
429429
test-e2e: $(KIND) $(SSM_PLUGIN) $(KUSTOMIZE) generate-test-flavors e2e-image ## Run e2e tests

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ require (
5656
sigs.k8s.io/aws-iam-authenticator v0.6.13
5757
sigs.k8s.io/cluster-api v1.8.6
5858
sigs.k8s.io/cluster-api/test v1.8.6
59-
sigs.k8s.io/controller-runtime v0.18.6
59+
sigs.k8s.io/controller-runtime v0.18.7
6060
sigs.k8s.io/yaml v1.4.0
6161
)
6262

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -800,8 +800,8 @@ sigs.k8s.io/cluster-api v1.8.6 h1:kQvvEvO7+SCLLXHFW7lRmDQK60g+WD5yCRl1OPzdy40=
800800
sigs.k8s.io/cluster-api v1.8.6/go.mod h1:RhIkNM1I2Of4xXCgPHtRDHNprVrLgFFeA8BQRRIy+Tk=
801801
sigs.k8s.io/cluster-api/test v1.8.6 h1:0T6qxN2o4hHK2gSB0X2m/iCzekVjJcwqxj3SSLWLTGs=
802802
sigs.k8s.io/cluster-api/test v1.8.6/go.mod h1:GSWpRlulF49kEjFPbnSWnhe7riWam4UGNSphLL8kctA=
803-
sigs.k8s.io/controller-runtime v0.18.6 h1:UnEoLBLDpQwzJ2jYh6aTdiMhGjNDR7IdFn9YEqHIccc=
804-
sigs.k8s.io/controller-runtime v0.18.6/go.mod h1:Dcsa9v8AEBWa3sQNJHsuWPT4ICv99irl5wj83NiC12U=
803+
sigs.k8s.io/controller-runtime v0.18.7 h1:WDnx8LTRY8Fn1j/7B+S/R9MeDjWNAzpDBoaSvMSrQME=
804+
sigs.k8s.io/controller-runtime v0.18.7/go.mod h1:L9r3fUZhID7Q9eK9mseNskpaTg2n11f/tlb8odyzJ4Y=
805805
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=
806806
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
807807
sigs.k8s.io/kind v0.24.0 h1:g4y4eu0qa+SCeKESLpESgMmVFBebL0BDa6f777OIWrg=

0 commit comments

Comments
 (0)