Skip to content

Commit 77d3437

Browse files
authored
Merge pull request #4125 from camilamacedo86/fix-make-test-e2e
🐛 fix: ensure that make test-e2e call the same targets of make test
2 parents c0ba5ce + 3c3c2be commit 77d3437

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

docs/book/src/cronjob-tutorial/testdata/project/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ test: manifests generate fmt vet envtest ## Run tests.
7373
# - PROMETHEUS_INSTALL_SKIP=true
7474
# - CERT_MANAGER_INSTALL_SKIP=true
7575
.PHONY: test-e2e
76-
test-e2e: ## Run the e2e tests. Expected an isolated environment using Kind.
76+
test-e2e: manifests generate fmt vet ## Run the e2e tests. Expected an isolated environment using Kind.
7777
@command -v kind >/dev/null 2>&1 || { \
7878
echo "Kind is not installed. Please install Kind manually."; \
7979
exit 1; \

docs/book/src/getting-started/testdata/project/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ test: manifests generate fmt vet envtest ## Run tests.
6969
# - PROMETHEUS_INSTALL_SKIP=true
7070
# - CERT_MANAGER_INSTALL_SKIP=true
7171
.PHONY: test-e2e
72-
test-e2e: ## Run the e2e tests. Expected an isolated environment using Kind.
72+
test-e2e: manifests generate fmt vet ## Run the e2e tests. Expected an isolated environment using Kind.
7373
@command -v kind >/dev/null 2>&1 || { \
7474
echo "Kind is not installed. Please install Kind manually."; \
7575
exit 1; \

pkg/plugins/golang/v4/scaffolds/internal/templates/makefile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ test: manifests generate fmt vet envtest ## Run tests.
146146
# - PROMETHEUS_INSTALL_SKIP=true
147147
# - CERT_MANAGER_INSTALL_SKIP=true
148148
.PHONY: test-e2e
149-
test-e2e: ## Run the e2e tests. Expected an isolated environment using Kind.
149+
test-e2e: manifests generate fmt vet ## Run the e2e tests. Expected an isolated environment using Kind.
150150
@command -v kind >/dev/null 2>&1 || { \
151151
echo "Kind is not installed. Please install Kind manually."; \
152152
exit 1; \

testdata/project-v4-multigroup-with-deploy-image/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ test: manifests generate fmt vet envtest ## Run tests.
6969
# - PROMETHEUS_INSTALL_SKIP=true
7070
# - CERT_MANAGER_INSTALL_SKIP=true
7171
.PHONY: test-e2e
72-
test-e2e: ## Run the e2e tests. Expected an isolated environment using Kind.
72+
test-e2e: manifests generate fmt vet ## Run the e2e tests. Expected an isolated environment using Kind.
7373
@command -v kind >/dev/null 2>&1 || { \
7474
echo "Kind is not installed. Please install Kind manually."; \
7575
exit 1; \

testdata/project-v4-multigroup/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ test: manifests generate fmt vet envtest ## Run tests.
6969
# - PROMETHEUS_INSTALL_SKIP=true
7070
# - CERT_MANAGER_INSTALL_SKIP=true
7171
.PHONY: test-e2e
72-
test-e2e: ## Run the e2e tests. Expected an isolated environment using Kind.
72+
test-e2e: manifests generate fmt vet ## Run the e2e tests. Expected an isolated environment using Kind.
7373
@command -v kind >/dev/null 2>&1 || { \
7474
echo "Kind is not installed. Please install Kind manually."; \
7575
exit 1; \

testdata/project-v4-with-deploy-image/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ test: manifests generate fmt vet envtest ## Run tests.
6969
# - PROMETHEUS_INSTALL_SKIP=true
7070
# - CERT_MANAGER_INSTALL_SKIP=true
7171
.PHONY: test-e2e
72-
test-e2e: ## Run the e2e tests. Expected an isolated environment using Kind.
72+
test-e2e: manifests generate fmt vet ## Run the e2e tests. Expected an isolated environment using Kind.
7373
@command -v kind >/dev/null 2>&1 || { \
7474
echo "Kind is not installed. Please install Kind manually."; \
7575
exit 1; \

testdata/project-v4-with-grafana/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ test: manifests generate fmt vet envtest ## Run tests.
6969
# - PROMETHEUS_INSTALL_SKIP=true
7070
# - CERT_MANAGER_INSTALL_SKIP=true
7171
.PHONY: test-e2e
72-
test-e2e: ## Run the e2e tests. Expected an isolated environment using Kind.
72+
test-e2e: manifests generate fmt vet ## Run the e2e tests. Expected an isolated environment using Kind.
7373
@command -v kind >/dev/null 2>&1 || { \
7474
echo "Kind is not installed. Please install Kind manually."; \
7575
exit 1; \

testdata/project-v4/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ test: manifests generate fmt vet envtest ## Run tests.
6969
# - PROMETHEUS_INSTALL_SKIP=true
7070
# - CERT_MANAGER_INSTALL_SKIP=true
7171
.PHONY: test-e2e
72-
test-e2e: ## Run the e2e tests. Expected an isolated environment using Kind.
72+
test-e2e: manifests generate fmt vet ## Run the e2e tests. Expected an isolated environment using Kind.
7373
@command -v kind >/dev/null 2>&1 || { \
7474
echo "Kind is not installed. Please install Kind manually."; \
7575
exit 1; \

0 commit comments

Comments
 (0)