We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a967b4a commit aae20beCopy full SHA for aae20be
.github/workflows/helm-ci.yaml
@@ -50,7 +50,7 @@ jobs:
50
version: ${{ env.HELM_VERSION }}
51
52
- name: Install dependences
53
- run: make ginkgo kind
+ run: make ginkgo setup-test-e2e
54
55
- name: Run helm e2e tests
56
run: make fluentd_helm-e2e
Makefile
@@ -96,7 +96,7 @@ cleanup-test-e2e:
96
test-e2e: setup-test-e2e fluentd-e2e ## Run the e2e tests against a Kind k8s instance that is spun up.
97
98
%-e2e: ginkgo
99
- @export KIND_CLUSTER=$(KIND_CLUSTER); tests/scripts/$*_e2e.sh
+ @export KIND_CLUSTER=$(KIND_CLUSTER); export PATH="bin:$$PATH"; tests/scripts/$*_e2e.sh
100
101
.PHONY: lint
102
lint: golangci-lint ## Run golangci-lint linter
0 commit comments