Skip to content

Commit 04cbd68

Browse files
committed
fix: Helm e2e
Signed-off-by: Marco Franssen <[email protected]>
1 parent 0289c96 commit 04cbd68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ test: manifests generate fmt vet setup-envtest ## Run tests.
7979
KIND_CLUSTER ?= fluent-operator-test-e2e
8080

8181
.PHONY: setup-test-e2e
82-
setup-test-e2e: $(KIND) ## Set up a Kind cluster for e2e tests if it does not exist
82+
setup-test-e2e: kind ## Set up a Kind cluster for e2e tests if it does not exist
8383
@case "$$($(KIND) get clusters)" in \
8484
*"$(KIND_CLUSTER)"*) \
8585
echo "Kind cluster '$(KIND_CLUSTER)' already exists. Skipping creation." ;; \
@@ -96,7 +96,7 @@ cleanup-test-e2e:
9696
test-e2e: setup-test-e2e fluentd-e2e ## Run the e2e tests against a Kind k8s instance that is spun up.
9797

9898
%-e2e: ginkgo
99-
@export KIND_CLUSTER=$(KIND_CLUSTER); export PATH="bin:$$PATH"; tests/scripts/$*_e2e.sh
99+
@export KIND_CLUSTER=$(KIND_CLUSTER); export PATH="$$PWD/bin:$$PATH"; tests/scripts/$*_e2e.sh
100100

101101
.PHONY: lint
102102
lint: golangci-lint ## Run golangci-lint linter

0 commit comments

Comments
 (0)